Aug 16, 2001 #1 specv Programmer Aug 8, 2001 42 CA Hi! Can we change the value in a textbox? In javascript we can do : document.formname.textbox.value = "sdfs" But can we do something like this in asp? Thanks Phil
Hi! Can we change the value in a textbox? In javascript we can do : document.formname.textbox.value = "sdfs" But can we do something like this in asp? Thanks Phil
Aug 16, 2001 #2 PepperPepsi Programmer Aug 3, 2000 241 US Hi, is this what you looking for? <% boxvalue = "sdfs" %> <input type="text" name="textbox" value="<%=boxvalue%>"> hope this helps, Chiu Chan WebMaster & Software Engineer emagine solutions, inc http://www.emagine-solutions.comcchan@emagine-solutions.com Upvote 0 Downvote
Hi, is this what you looking for? <% boxvalue = "sdfs" %> <input type="text" name="textbox" value="<%=boxvalue%>"> hope this helps, Chiu Chan WebMaster & Software Engineer emagine solutions, inc http://www.emagine-solutions.comcchan@emagine-solutions.com