ViewState with example in asp.net C#

Saturday, January 8, 2011

How to refresh the page using the javascript

 <script type="text/javascript" language="javascript">
    function Refresh()
    {
   window.location.reload(); 
    
    }
   
    </script>



<asp:Button ID="btnRefresh" runat="server" Text="Refresh" OnClientClick=" Refresh();" />

No comments:

Post a Comment