Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
I want to have a button that runs at server but before posting back it should run one or more javascript functions.
is this possible?
function runSomeStuff() { callYourCode(); callSomethingElse(); __doPostBack('btnSave', "Some String To Post Back"); }
Add a comment
Yes that is possible.
OnClientClick="return func1();"
remember your function func1() should return bool true/ false. If it returns false then there will be no postback.
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.