How to Open any web page by clicking any Any ASPControl
like (Checkbox,radio button or Button) without calling its
event and without going to Siverside code?
Answer Posted / vikas kant
<script type="text/javascript" language="javascript">
function fnopenpage()
{
window.open('Default2.aspx?bck=1');
return true
}
</script>
<asp:button ID="btn" OnClientClick="fnopenpage()"
Text="CLICK" runat="server"></asp:button>
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
How can you debug your.net application?
What is bound controls
How to reduce the width of textbox in editcommandcolumn of datagrid?
What is query string with example?
What is the difference between cookie and session?
What do you mean by query string?
How many types of cache are there?
Explain how caching in asp.net 2.0 is different from caching in asp.net 1.1?
Explain the updatepanel?
What is server infrastructure?
Explain what is the procedure to create the environment for asp.net? : asp.net mvc
Is asp.net and .net same?
Write a code for passing ArrayList in Web API?
What is the importance of Global.asax in ASP.NET?
If I am developing an application that must accomodate multiple security levels though secure login and my asp.net web application is spanned across three web-servers (using round-robin load balancing). What would be the best approach to maintain login-in state for the users?