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
What are the namespaces used in asp.net mvc? : asp.net mvc
Explain the difference between overriding and overloading?
Explain about Application and Session Events ?
Is it right that ASP.NET Web API has replaced WCF?
What is difference between cache and session?
Describe the master page.
How do we access view state value of this page in the next page?
What is authorization in asp.net?
Describe session handling in a webfarm?
What is an axd file?
What is a reflection?
Why is string called immutable data type?
How does a content page differ from a master page?
How does windows service lifecycle differ from a .standard. Exe?
Define static constructor?