Click here to Skip to main content
15,896,118 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to access the javascript function from the .vb page
Posted
Comments
Jim Jos 16-May-12 6:20am    
Could you please elaborate on this.. You would like to call a javascript function from a server side control like a asp:button or something?

1 solution

Using Page.RegisterClientScriptBlock OR Page.RegisterStartupScript to execute Client Side Javascipt within ASP.NET

Here:
Page.RegisterClientScriptBlock Method [^]
Page.RegisterStartupScript Method[^]

Using them, you can inject the scripts into a page from server side and based on certain condition (and specific to page.), attach to existing Javascript methods.
For samples on how to use it: How to Use RegisterClientScriptBlock & RegisterStartupScript[^]
Inject javascript from server - Sample[^]
 
Share this answer
 
Comments
member60 16-May-12 7:48am    
+5
Sandeep Mewara 16-May-12 12:31pm    
Thanks member60.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900