Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

having a most confusing problem with text box

Status
Not open for further replies.

kshk

Programmer
Aug 28, 2002
8
IN
i am developing a site and having a very confusing problem with text boxes(input type=text). when retrieving data from databases, some text box values are not showing the updated values,instead there are showing the initial value of the field in the record.can anybody please help me out with this. i will be realyy benefitted
 
Near the top of your page put:
Response.Expires=-1


Put all values from the db into a string:
strEmail = rs("email")


textbox value:
value=&quot;<%=strEmail%>&quot;

- Jason www.vzio.com
ASP WEB DEVELOPMENT



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top