Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
570 views
in Technique[技术] by (71.8m points)

asp.net - How to call javascript function from c#

I like to call a JavaScript function from c#. Can any one can give me code snippet.

More detail...

I have a asp.net page which has a asp button. when i click that button, i like to call javascript function.

like wise....

in my asp.net page,

<button id="save" onclick="i like to call a method resides in asp.net page'>Save</button>

More and more details... when click the asp.net button, i like to perform some server side action and then like to call a javascript function from there itself...

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

For an asp:button you use OnClientClick

<asp:Button id="myid" runat="server" OnClientClick="alert('test')" />

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...