Search

You searched for the word(s): userid:741135

Matching Posts

  • problem with dispose script

    I have an update panel on a page. This update panel is meant ot host any control dynamically. The way I do this is that I send the User Control virtual path in the int he partial postback and instantiate the control usin Page.LoadControl serverside. The control I create with LoadControl implements IScriptControl. In the response stream of the partial page postback I see this. $create(ININ.WebAdmin.LoginActionManager, {"applicationPath":"/Admin","container":"ctl00_modalDialog_modalClientContents"
    Posted to ASP.NET AJAX Control Toolkit (Forum) by fbaldoni on 7/2/2008
    Filed under: dispose ajax update panel
  • Re: Problem with ScriptDisposes

    Got it. The answer as as simple as setting an ID equal to the client side ID in the codebehind. Thank goodness for reflector. Now why couldn't the class just throw an exception saying "Hey dummy set the ID, because I aint gonna set it for you" ? Here's the code that creates the client side js dispose script from Sys.Web.UI.ScriptComponentDescriptor. internal override void RegisterDisposeForDescriptor ( ScriptManager scriptManager, Control owner) { if ( this . RegisterDispose &&
  • Problem with ScriptDisposes

    I am getting a js error when trying to update an updatepanel $find("") has no properties I have an update panel with controls that implement IScriptControl. From what I have been able to find out, If you Implement IScriptControl and you host your IScript Control in an update panel. The framework automaticaly tries to call dispose() on those objects. The question is why the ID of the control is an empty string. Thanks in advances
  • ASP.NET Developer Needed - Indianapolis Indiana

    http://careers.vurvexpress.com/jobprofile.cfm?szWID=7850&szCID=35327&szSiteID=22&szOrderID=481491&szStart=1
    Posted to Jobs (Forum) by fbaldoni on 3/28/2008
    Filed under: Job asp.net developer
  • Re: 'Sys is not defined' error when making web request during unload

    On page unload call the abort function // Get the current executor. var executor = wRequest.get_executor(); // Abort the request. executor.abort(); and in your call completed handler make sure to check that a response is available before accessing the web request data if(!MyExecutor.get_responseAvailable()) return; this should solve your problem
  • Re: Serialize Enum into JSON?

    /// <summary> /// This method is used to generate javascript equivalents of C# enumerations. /// This makes it possible to use the C# enum without having to code and maintain /// an equivalent javascript class /// </summary> /// <param name="t"></param> /// <returns></returns> public static string ConvertEnumToJavascript(Type t) { if (!t.IsEnum) throw new Exception( "Type must be an enumeration" ); Array values = System.Enum.GetValues(t); Dictionary<
  • Re: what is the oldest version of the .net framework MVC will work on ?

    Thank you, i read the doc you referenced and it is clearly spelled out there.
    Posted to ASP.NET MVC (Forum) by fbaldoni on 12/10/2007
  • what is the oldest version of the .net framework MVC will work on ?

    What is the oldest version of the .net framework that MVC aplications can be written on. Our ability to use it currently depends on it being able to run on the 2.0 Framework.
    Posted to ASP.NET MVC (Forum) by fbaldoni on 12/10/2007
  • Re: trying to get hover tooltip to work in updatepanel

    have you tried using the scriptmanager or toolkit script manager to load the script ?
    Posted to ASP.NET AJAX UI (Forum) by fbaldoni on 12/7/2007
  • Re: Target control ID on popup Control

    [quote user="jimmy q"] [quote user="fbaldoni"] Thanks for your response. Yes you can do that server side. I am looking for a way to do it client side. Something like this in JS. $get('myPopupBehavior').set_targetControl($get('myTargetControl')) [/quote] The problem as you suggested earlier cannot be solved as the clientID is not known until runtime. The clientId will change depending on if the control is contained within anotehr control. If you really want to do
    Posted to ASP.NET AJAX Control Toolkit (Forum) by fbaldoni on 12/5/2007
Page 1 of 3 (21 items) 1 2 3 Next >