1
Answer

How can we call server side(c#) function from client side script(Javascript) without using ajax?

Om prakash Singh

Om prakash Singh

13y
2.2k
1
How can we call server side function from client side script without using ajax?

The situation is like, I have a function on server side written in c# and I have to call it from javascript without using ajax. Is it possible. If yes then how.
Answers (1)
0
Manish Dwivedi

Manish Dwivedi

NA 8.3k 1.2m 16y
Hi Jignesh,
use this for doing that.
string str = "welcome";
string newString = str.Substring(1, str.Length - 1) + str.Substring(0, 1);