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


Please Help Members By Posting Answers For Below Questions

To load your generated dataset with data which method do you invoke?

813


What are the two types of web pages?

694


How can we prevent browser from caching an aspx page?

686


What is a postback ispostback and autopostback in asp net?

657


What is a session in programming?

735


What is a master page and what does it do?

702


What is the use of web.config file?

735


What is sql data source control in asp.net?

767


What are the uses of reflection?

767


What is a windows service?

752


Explain the use of fragment caching.

826


What is the difference between response.redirect and server.transfer?

720


What is enableviewstatemac in asp net?

767


Where is cookie used in asp.net?

767


What are the session management techniques asp net?

733