[ Contents | Search | Post | Reply | Next | Previous | Up ]
![]()
From: krishna@itfinity.com
Date: 7/15/99
Time: 4:48:52 AM
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.
![]()