Science, asked by sweprnaep6410, 11 months ago

How to make an ASP page to refresh after certain time ?

Answers

Answered by gourab2717guha
0

You can add this line in your aspx after the head tag:

This would refresh page after every 2 seconds.

Or if you want to do it in code behind do it like this:

Response.AppendHeader("Refresh", "2");

Thank u.

Similar questions