Search

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

Matching Posts

  • Re: Type is not resolved for member... (membership provider)

    I have the same pb. I will post a resolution if I found. I hope that will be faster than what you have now here as feedbck.
    Posted to Security (Forum) by stelianx on 2/13/2009
  • Re: No Bot returns InvalidResponseStatus if a DDL is inside an update panel

    Someone present here? Hello???? Okay, I promise that I will debugging the NoBot control to detect why this bug in it.... Seems to be the only hope... Happy programming 2 all!!!
    Posted to ASP.NET AJAX Control Toolkit (Forum) by stelianx on 6/9/2008
    Filed under: Hope
  • No Bot returns InvalidResponseStatus if a DDL is inside an update panel

    If I have an autopostback drop down list inside an update panel, avery time I change the selection in the drop down list, the No Bot control returns false IsValid (status-> InvalidResponse), which is not normal i think. A sample application which reproduces this bug is available on my site. http://simplusoft.net/blogs/stelian/archive/2008/06/05/nobot-control-does-not-work-with-updatepanel.aspx
    Posted to ASP.NET AJAX Control Toolkit (Forum) by stelianx on 6/5/2008
    Filed under: NoBot, Web 2.0, .net 2.0, bug
  • Re: Embedded Resource - "This is an invalid webresource request."

    Hello to everybody. I run the same issue from 1 day. The explanation is very simple. When We are inside a user control, this.Page.GetType().Equals(typeof(YourNamespace.YourPageClass)) == false. This because when a page is run in ASP.NET, a new type wich INHERITS the YourNamespace.YourPageClass is created. What you must do to work 4 sure is to use this.Page.GetType().BaseType. It works
    Posted to HttpHandlers and HttpModules (Forum) by stelianx on 2/28/2008
  • Re: Issue with RegisterArrayDeclaration in CreateChildControls()

    I have the code 1 public class Agenda: CompositeControl 2 { 3 public string Patients 4 { 5 get 6 { 7 if (ViewState["_pacients"] != null) 8 return ViewState["_pacients"].ToString(); 9 else 10 return String.Empty; 11 12 } 13 set 14 { 15 ViewState["_pacients"] = value; 16 } 17 } 18 19 protected override void CreateChildControls() 20 { 21 RegisterArrayDeclaration(....); // works ok! 22 if(!String.IsNullOrEmpty(this.Patients)) 23 { 24 RegisterArrayDeclaration(....); // bermuda
    Posted to ASP.NET AJAX UI (Forum) by stelianx on 2/18/2008
  • Re: ImageButton and UseSubmitBehaviour

    U can use the button, set the UseSubmitBehaviour=false and use a css class with background image, Text=String.Empty, and u have what u wanted to have. Indeed, I subscribe that Ms did not done well that ImageButton and LinkButton does not have the same feature as the Button class.
    Posted to Web Forms (Forum) by stelianx on 2/18/2008
  • Re: ImageButton and UseSubmitBehaviour

    I had the same pb. Malenkov solution seems to me the only right way in those circumstances.
    Posted to Web Forms (Forum) by stelianx on 2/18/2008
  • Re: EditorAttribute does not work 4 me :(

    I know that exists a string array editor in .NET. But i am trying to make it appear in the design phase. That is my problemm. FilterControlsEditor inherits the ArrayEditor ans specifies there that the type is String. Sorry, for me is not clear why should I remove the Editor tag and put it on other class? Because that without does not work (appears the string[] editor)
    Posted to Web Forms (Forum) by stelianx on 2/18/2008
  • EditorAttribute does not work 4 me :(

    I have the follow code in a Uer Control from an ASP.NET 2.0 web csproj: public class FilterControlsEditor: ArrayEditor { public FilterControlsEditor() : base ( typeof (String)) { } } private string [] filterControls; [Browsable( true )] [Editor( typeof (FilterControlsEditor), typeof (System.Drawing.Design.UITypeEditor))] [PersistenceMode(PersistenceMode.InnerProperty)] public string [] FilterControls { get { return this .filterControls; } set { this .filterControls = value ; } } Despite this when
    Posted to Web Forms (Forum) by stelianx on 2/11/2008
    Filed under: urgent, user control, EditorAttribute
  • Re: WEB PARTS, CalendarExtender, UpdatePanel reset textbox values

    More info about this. In the master page i havebthe code: Control wpCtl = this .LoadControl(userControl); wpCtl.ID = System. Guid .NewGuid().ToString(); GenericWebPart gwp = this .sunWebPartManager.CreateWebPart(wpCtl); gwp.Title = webPartTitle; this .sunWebPartManager.AddWebPart(gwp, wpz, 0); So, my controls are added dynamically. So when the LoadControl will be executed the Page_Load will occur on the ascx. I found a workaround. Before the LoadControl I write in the Sessioon a Key, and imediately
    Posted to Web Parts and Personalization (Forum) by stelianx on 1/16/2008
Page 1 of 9 (85 items) 1 2 3 4 5 Next > ... Last »