P
Phillip Vong
Please help. I'm a newbie. Using VS2005.
I have a simple aspx page. I want the querystring being passed in to bind
to a textbox in a control. How do you do this?
Basically, www.website.com?string=100
The site autoloads into Formview1 / InsertItem Template. TextBox1 shows up
as blank waiting for me to put in the value "100", but I want Textbox1 to
autograb that value and put it in. Is this possible?
This is what I tried and I really thought this would work:
In page load:
Dim Answer as string
Answer = Request.Querystring("string")
Formview1.InsertItemTemplate.Textbox1 = Answer
Thanks!
Phil
I have a simple aspx page. I want the querystring being passed in to bind
to a textbox in a control. How do you do this?
Basically, www.website.com?string=100
The site autoloads into Formview1 / InsertItem Template. TextBox1 shows up
as blank waiting for me to put in the value "100", but I want Textbox1 to
autograb that value and put it in. Is this possible?
This is what I tried and I really thought this would work:
In page load:
Dim Answer as string
Answer = Request.Querystring("string")
Formview1.InsertItemTemplate.Textbox1 = Answer
Thanks!
Phil