0

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?

2 Answers 2

1
function runSomeStuff() {
    callYourCode();
    callSomethingElse();
    __doPostBack('btnSave', "Some String To Post Back");
}
Sign up to request clarification or add additional context in comments.

Comments

0

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.

1 Comment

@Marky68 :) Great. If it worked UP Vote & check as correct answer

Your Answer

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.

Ask question

Explore related questions

See similar questions with these tags.