c# - How to auto submit form based on time -


i generate question paper. want auto submit question paper when time reaches maximum.

i generate timer using java script , calldocument.forms["form1"].submitmethod, not submitting, refresh page when time finished.

form:

<form id='myform'> 

javascript:

settimeout(function(){document.forms["myform"].submit();},3000); 

Comments

Popular posts from this blog

php - Add the correct number of days for each month -

c# - Why is dictionary lookup slower than recursive search? -