sending text to web page controls

  • Thread starter Thread starter Omar Alawna
  • Start date Start date
O

Omar Alawna

hi ..i am trying to write a program that will fill web forms for me..like my
email address and other information when i need that..how can i send text to
textboxes in a web page?
thanks
 
Hi Omar,

While using Visual.Studio.Net?
(You can say otherwise I did not ask it in this newsgroup but a lot of
people do ask it not using vb.net).

Cor
 
hi cor i am using visual studio .net
thanks
Cor said:
Hi Omar,

While using Visual.Studio.Net?
(You can say otherwise I did not ask it in this newsgroup but a lot of
people do ask it not using vb.net).

Cor
me..like text
 
Hi Omar,

When you have ASP.net webserver also you can try this.

Open a new VB asp.net project.
Give it a name and enter

You get an aspx page.

You drag from the toolbox in your lefthand a textbox, a button and a label
on the page.

You right click on the page and open the code page.

There you see beneath 2 rows and that is the load event.
And a comment line with something as 'here you can put your code".
You place there
If not ispostback then
me.textbox1.text = "It is me"
end if

You go back to your form and pushes on the button, the code page will open
again for you.
In that button click event you type.
me.label1.text = me.textbox1.text

If I typed all things well and you did do this than when you debug it, there
will be shown a page with in the texbox "It is me"
If you enter there something else and push on the button, the text from the
textbox will be in the label.

That is all

I hope it works for you?

Cor
 
Back
Top