Search

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

Matching Posts

  • using enterprise library PropertyProxyValidator

    I'm trying to validate this scenario using the PropertyProxyValidator provided by enterprise library 3.1 I have a class that holds two fields class MyClass{ public ObjectA MyObjectA public string OtherA } I need to validate that if ObjectA is null then OtherA must be non empty. I can validate this using SelfValidation inside the MyClass object but when i try to validate it using Page.IsValid nothing is happening cause i dont have any validation rules on the property. I searched the web and doc
    Posted to Web Forms (Forum) by mateo666 on 1/6/2009
  • about the tabcontainer

    ok i was loading some usercontrols (which have an update panel inside) in ajax panels and was hoping to do some async postback of each panel independently, but in each of those user controls i have a file upload control and file upload dont work with update panel or partial postback (that's what i've read and experimented). so basicaly i have to do a whole postback to get the file. I'm now thinking of another way of doing what i want (being able to update/save individual usercontrol with
    Posted to ASP.NET AJAX Control Toolkit (Forum) by mateo666 on 12/11/2008
  • Re: Can someone explain how to refresh a userControl in an UpdatePanel ?

    i went at msdn and read about the partial page updating... what i didnt get (and if you have a link i'll be pleased :) is what is doing the Update function. I meen what does Update do concretly (and dont tell me it is updating the updatePanel please!) thanks
  • Re: usercontrol - form - updatepanel

    but i can have 10 forms on a page if i want (only one with runat=server) if i remove the form in the user controls what will be postback on a form submit? if all controls are returned i might have conflicts somewhere.
    Posted to ASP.NET AJAX UI (Forum) by mateo666 on 12/6/2008
  • usercontrol - form - updatepanel

    I'm trying to embed updatePanel inside usercontrols built like this <form> <updatePanel> <contenttemplate> textbox... checkbox.. submitbutton </contenttemplate> </updatepanel> </form> What i'm trying to do is to have independent form (usercontrol) on a page which can be updated via a trigger in that page. But those usercontrols could also be saved (form submit) independently. Seem's like the form is causing problems. Can anyone confirm that what i'm
    Posted to ASP.NET AJAX UI (Forum) by mateo666 on 12/5/2008
  • How can i get the selectedvalue of a dropdownlist outside of an updatePanel

    Something must have gone wrong cause it was working before and now not ... basically i have this < table class= "tableSection" > < tr > < td >Couple Gestionnaire / Portefeuille Spécialisé</ td > < td >< asp:DropDownList ID= "DropDownList1" runat= "server" Width= "100%" /></ td > < td ></ td > </ tr > < tr > < td >Couple Gestionnaire / Portefeuille Spécialisé</ td > < td ><
  • updatepanel not updating ?

    I'm using an UpdatePanel to load an ascx control and depending on the user rights i want the control to be updatable (submit form) or not (ReadOnly) Here is the control < asp:UpdatePanel ID= "upSection" runat= "server" UpdateMode= "Conditional" > < ContentTemplate > < asp:Panel ID= "pSectionHead" runat= "server" style= "cursor:pointer;" > < div class= "sectionHeading" > < asp:ImageButton ID= "Description_ToggleImage"
  • Can someone explain how to refresh a userControl in an UpdatePanel ?

    Ok i've just started to use the ajax framework and i'm trying to update one of my usercontrol in an updatePanel so i've followed the microsoft example here http://www.asp.net/Ajax/Documentation/Live/tutorials/UsingUpdatePanelUserControls.aspx but there is something i don't get ... so to start here is my code in a form i have this update panel which contains my user control < asp:Button ID= "Button1" runat= "server" Text= "Afficher" Enabled= "false"
  • need advice on json webservice

    hi everyone i'm building a web application were every request goes through a web service. usually i return usercontrols filled with data that i then insert into some client side div. This is working fine in most of the cases. But there is a scenario that is bugging me. when i post a form to the web service, the response is always returned xml formatted? Is there a way to force the response as a json one? And can you return a usercontrol as a json object? thanks
    Posted to Web Forms (Forum) by mateo666 on 9/23/2008
  • Re: returning a response in json after a post

    Hi James, i use the jquery form plugin like this options = { target:'#message', beforeSubmit: validateSaveDemande, url:"MyWebService.asmx/SaveDemande", type:'post', dataType:'json' } $("#aspnetForm").submit(function() { $(this).ajaxSubmit(options); return false; }); thanks for your help mateo
Page 1 of 3 (26 items) 1 2 3 Next >