Hai all, i have 3 pages, first page i just get number of text boxes using text box, second page depends upon the number i should display the text box and enter...
Name the textboxes something like "textbox1", "textbox2" etc, then store the number of textboxes the user requested in a hidden form field in the second page....
here we can get the number of ttext boxex through session also.But i want to know how to name the text boxes in page2. eg: n=4 first method: for Txtb=1 to 4 ...
In page 2 store the number of textboxes in either the session, or (my preferred method) in a hidden text field. Name them in page 2 like this :- numTextboxes =...
Can you post your code? Dan ________________________________ From: AspClassicAnyQuestionIsOk@yahoogroups.com [mailto:AspClassicAnyQuestionIsOk@yahoogroups.com]...
code is /***second page **/ <% session("txt")=request.form("TxtBox") txtbox=request.form("TxtBox") if (txtbox>0) then response.write "Name Of Text Fields" ...
hi all... i just want to know if anyone here know how to save asp output to text file automatically.pleeease help me... ... Anda ber-Yahoo!? Kini dengan...
Hi Jegatha, use the following Code in ex.asp <% if Request("numTextBoxes") = "" Then %> <FORM NAME="testform" action="" method=post > <input type=text...
Thank u Balaji. Jegatha Balaji vishnubhotla <balaji.vishnubhotla@...> wrote: Hi Jegatha, use the following Code in ex.asp <% if Request("numTextBoxes") =...
Have a real simple login form, which has been working for years. Up until last friday, the form was accessed as "www.xyz.com/index.asp" ....last Friday, the...
hi all i have 6 categories, 1.intro1 2.into2 ...... 6.intro6 if i click this the content should be in the same page for each intro i just use code like, <a...
Please provide more code. On a normal html page what you have provided should bring the line containing <a name="intro"> to the top of the browser unless the...
Microsoft OLE DB Provider for ODBC Drivers error '800a0046' [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed /spss/include/vbsUpload.asp,...
That line in itself shouldn't cause an error, particularly not an ODBC error as there's no ODBC-related code on it. What are the lines surrounding that line,...
Look here to get the character code for whatever symbol you wish to display :- http://www.lookuptables.com/ Then enter it in you HTML as a character entity -...
Hey everyone. I'm just starting out in the world of ASP, and I have a very basic question. Can anyone tell me why when I run the following code in a script: if...
Hi Geoff, The problem is that the function call is returning a value which has nowhere to go. You will need to assign it to a variable or write it to the ...