asp.net restart

windows

Guest
hi, im making a site using asp.net and i want to restart the application on a button_Click event, which will basically close the window and press play again ( in theory) help please!

steveappend the question mark after your file...and do a response.redirect.

response.redirect("page.aspx?")

it causes the browser to send a new query string to server...so its a new request object. but since there is no query string...it doesnt do anythign.

and then in your page-load, do whatever you need to play it...

tak
 
Back
Top