Focus on field in webform using stringbuilder

  • Thread starter Thread starter ReidarT
  • Start date Start date
R

ReidarT

I am trying to get control on where the user moves around in a webform
especially after fields with autopostback.
I have found a C# page with some of this stuff, but when I have converted it
to VB, I get an error of stringbuilder.
I have tried to use Imports System.Oject, but it still doesn't recognize the
stringbuilder-class.
What am I doing wrong?
regards
reidarT
 
ReidarT said:
I have found a C# page with some of this stuff, but when I have converted
it to VB, I get an error of stringbuilder.
I have tried to use Imports System.Oject, but it still doesn't recognize
the stringbuilder-class.


Import the namespace 'System.Text' ('Imports System.Text').
 
Back
Top