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 / om sambosankara
In Asp.net for most of the Controls have OnClick property
will be available in (.net 2.0/VSS 2005) by using the
Onclick property at the ClientSide we can open the Webpage
without going to Sever
OnClick Event: This is a property is available for Dropdown
list ,TextBox,CheckBox,RadioButton,Button,LinkButton etc..)
by using this property when ever the user click the Control
this property will be called.This all operations are done at
the Client Side
only
<asp:button id="btn"
onclick="window.open('Default.aspx?bck=1','cal','width=250,height=150,left=225,top=125')"
text="CLICK" runat="server" CssClass="href"
"></asp:button>
(or)
<script language="javascript">
function fnopenpage()
{
window.open('Default.aspx?bck=1');
return true
}
</script>
<asp:button id="btn" onclick="return fnopenpage();"
text="CLICK" runat="server" CssClass="href"
"></asp:button>
bck=1 after the page is not mandatory its a qury string if
requried we can pass any qurystrings like that....
| Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
How should I destroy my objects in asp.net?
What are the differnt types of handler in ASP.NET?
What is application Object?
Describe briefly what is the role of IIS on an ASP.NET application? What does it for the same application?
What is application and session in asp.net?
What is the use of placeholder control? Can we see it at runtime?
What is the difference between trace and debug in asp.net?
How will you load dynamic assembly? How will create assesblies at run time?
What is mvc in asp.net tutorial? : Asp.Net MVC
How to prevent client side validation from the ASP.NET validation controls?
What are client activated objects?
What is difference between asp state management and asp.net state management?
Explain exception handling in .net.
Explain what the contents of cookie?
What is asp.net web application?