Calling a jquery function in .cs file not working
Hi,i want to call 2 jquery function in .cs file like below on pageload event
ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "script", "tripbind();", true);
ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "script", "busbind();", true);
problem is only the fistcommand will work.here only tripbind function will work
and busbind will not work.
if i change the order then busbind will only work
i want to fire both commands .
How to solve this
Regards
Baiju