User61956409 posted
Hi JagjitSingh,
I want when ddlprocess selected index changed fires then Show Progress function should get invoked.
If you'd like to call JavaScript Client Side function from asp:DropDownList "ddlProcess"
OnSelectedIndexChanged event, you can use:
protected void ddlProcess_SelectedIndexChanged(object sender, EventArgs e)
{
//your code logic here
string script = "ShowProgress()";
ClientScript.RegisterStartupScript(this.GetType(), "showprogress", script, true);
}
With Regards,
Fei Han