ASP Programming

[ Contents | Search | Post | Reply | Next | Previous | Up ]

your query

From: krishna@itfinity.com
Date: 7/15/99
Time: 4:48:52 AM

Comments

Drop the textbox in design-time, in Interdev.

This will generate the following HTML code:

<input text name="varName" Value="">

Now, in the codepage (ASP file), replace the above code as following:

<% response.write "<input text name=""varName"" Value=" & sessionvariablename & """

This should do it.

Last changed: July 15, 1999