-
How can i refresh a HTML page .
Like i logon as administrator, and i want to add a new client, by adding the new client, i have a combobox containing the list of all the client , and the combobox gets populate by calling a page BottomMenu.asp, i want to refresh that page without making it reappered 2 times, like
Response.redirect would make it reappered, but all i want is a refresh.
PLEASE HELP :)
-
You could use JavaScript :rolleyes:.
Code:
<script language="Javascript">
function refresh(){
<!--
window.location=window.location
//-->
}
</script>
<input type="button" value="Refresh" onClick="refresh()">