Couple of easy questions

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I just have a couple of easy questions:
1. In Asp.net using Vb is there a way to list all the possible characters
without listing them all like Char() = "abc..."?
2. I was trying to set the focus to a text and was not able to by using
txtEmp.setfocus(). I read somewhere that this may not be possible, is that
true?
3. When you sign on to my web page that I am making and go to type something
into the textboxes, dropdown boxes with information from previous entries pop
up. Is there a way to make sure that the information is not kept?

Any help would be great. Sccr18 Thanks
 
Thanks, but I have all my code in VB. I went to the site you provided and it
had something for VB: SetFocus(textbox), but when I place it in my ASP.net
app code it does not work. If I use the Javascript with my program would I
need to have more than on apsx page?
 
re:
when I place it in my ASP.net
app code it does not work.

Did you include the line

SetFocus(TextBox1)

?

( If the textbox is named "Textbox1" ...)




Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================
 
I typed the line SetFocus(txtEmpID).

Juan T. Llibre said:
re:

Did you include the line

SetFocus(TextBox1)

?

( If the textbox is named "Textbox1" ...)




Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
Ven, y hablemos de ASP.NET...
======================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top