TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
How To Invoke Function At Server Side?
Ghanashyam Nayak
Apr 30, 2020
4.9
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
Invoke A Function At Sever Side Using JavaScript....
//First Of All Drag A Button From The Toolbox In The Window From & Then Put The Server Function In That Click Event….
protected
void
NewButton_Click(object sender, EventArgs e)
{
ServerFunctionName();
}
//Now You Can Call That Function Using This Javascript Code.... Secondly, you can call the server function at JavaScript by using the following code,
document.getElementById(
"NewButton"
).click();
How To Invoke Function At Server Side
Next Recommended Reading
Function Overloading In JavaScript