i have put the code for a loop in two pages
when one page is submitted some data
the code is coming via
this is the code of the page from where the data is being sent
i have almost every method of sending data
post / get
the above was a temporary method using javascript
but everytime the loop executes it gets timed out
but if is "a" (value) is set in the code of that page the loop is executing
thanks to everybody Unicorn11
unicorn11@mailcity.com
[red]Luck is not chance, it's toil; fortune's expensive
smile is earned.[red]
when one page is submitted some data
the code is coming via
Code:
<%
i = 0
a = Request.querystring("num")
response.write(a)
do while a > i
response.write("unicorn11 was here")
i = i + 1
loop
'response.write(a)
%>
this is the code of the page from where the data is being sent
Code:
function callfunc() {
if (document.form1.num.value == "") {
var dejavo = "test2.asp?num=0";
} else {
var dejavo = "test2.asp?num=" + document.form1.num.value;
}
window.location = dejavo;
}
i have almost every method of sending data
post / get
the above was a temporary method using javascript
but everytime the loop executes it gets timed out
but if is "a" (value) is set in the code of that page the loop is executing
thanks to everybody Unicorn11
unicorn11@mailcity.com
[red]Luck is not chance, it's toil; fortune's expensive
smile is earned.[red]