Lets start with the simple version and use Front Page Forms Web-Bots, As to the "how", I use a submission form to post to a table in my database, using the addditional code as shown<input type="hidden" name="userName" value="John Doe">
to modify it - this is probably over simplified but i need to find the exact method to do the following
<input type="hidden" name="userName"
value" = <%=Session("Username")%>
Not sure if the above syntax is correct or if i need to declare a variable like so:
dim uname
uname = <%=Session("Username")%>
then do this in my form;
<input type="hidden" name="userName"
value" = (uname)
Thanks for any help you can provide
[Got the toothbrush, still after the shaving kit though :-) ]