JavaScript Question

B

Barry

Hi

If i want to pupulate select control in javascript code at startup, which
event do i have to call, the forms Load event is used for someother
purpose.

TIA
Barry
 
N

Nathan Sokalski

You can use the <body onload=""> or combine the populating code with
whatever you are already using the <form onload=""> for.
 
R

Ramesh

Hi,

You can select the aspx page load event and you can call

Page.ClientScript.RegisterClientScriptBlock(Me.GetType, "rel",
"<script language=javascript>window.open
('TestpopupPage.aspx','test','toolbar=no,scrollbars=yes,height=500,width=700');</
script>")

Thanks

Ramesh
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top