Link to home
Start Free TrialLog in
Avatar of ajay1feb
ajay1feb

asked on

how to do render the client scripts using the System.Web.UI.ScriptManager instead of the System.Web.UI.ClientScriptManager

i have client script function which i want to render.how to do it?by using given idea?

client side script:

function ShowFlowPanel()
    {
        var objPan=document.getElementById("<%=pnlFlowSettings.ClientID%>") ;
        var objFlowPan=document.getElementById("<%=pnlFlowProfile.ClientID%>") ;
       
        if (objPan!=null)
        {
        objPan.style.display="";
        objFlowPan.style.display="none";
        return false;
        }
    }  

how to  Inherit the WebPartManager, override the RenderClientScript Method and render the client scripts using the System.Web.UI.ScriptManager instead of the System.Web.UI.ClientScriptManager?
ASKER CERTIFIED SOLUTION
Avatar of Gyanendra Singh
Gyanendra Singh
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial