Search

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

Matching Posts

  • Deploying to IIS6 problem (maybe?)

    Hello there, we have some problem with different design of our web app. Running od IIS7 and localhost, everything is fine, but after deploying solution to server with IIS6, design of pages is corrupted. (thicker gridview lines, white background of web controls etc.) We're testing, and running on IE8. Other mistery is, that after deploying app to another server machine, the "Compatibility view" icon on IE8 dissapears, but running app on localhost, icon is available (both in same IE8
    Posted to Configuration and Deployment (Forum) by metaller on 12/3/2009
  • Re: Deploying to IIS6 problem (maybe?)

    Problem already solved :) everything works fine in IE8 mode, problem was in IE7 mode... The solution is unchecking "Display intranet sites in Compatibility View" in Compatibility View Settings in IE8... how easy... i feel like dummy :)
    Posted to Configuration and Deployment (Forum) by metaller on 12/3/2009
  • Prevent update panel blink in parent when __doPostBack() is called

    Hello there, I've some problem with update panel (UP) in parent form blinking after __doPostBack() from child is called When i do some action, like update som record in child (popup) window, I want to close the window, and force postback to parent. Problem is, that after this, althought that page content is in UP, the page blinks... this is the script I call from child if (!Page.ClientScript.IsStartupScriptRegistered("CloseAjaxWithReload")) { // Prepare the script to close the window
    Posted to ASP.NET AJAX UI (Forum) by metaller on 7/3/2009
    Filed under: UpdatePanel blink
  • Re: Calendar extender: selected date changed on postback

    Look at the code above I've posted... It isn't loaded everytime, only if no postback is done. if (!IsPostBack) { this.SetSaleOrder(); } After changing item in dropdownlist postback is raised, so SetSalesOrder isn't called...
    Posted to ASP.NET AJAX Control Toolkit (Forum) by metaller on 6/29/2009
  • Re: Calendar extender: selected date changed on postback

    So folks, I've figured some workaround for this problem: according to this postit, it seems that this control doesn't store it's value http://programming.top54u.com/post/AJAX-Control-Toolkit-Calendar-Extender.aspx so I've added following code in the control's Page_Load protected void Page_Load(object sender, EventArgs e) { if (txtDate.Text != string.Empty) { ceCalendar.SelectedDate = Convert.ToDateTime(txtDate.Text); } } and now it work's fine :) regards...
    Posted to ASP.NET AJAX Control Toolkit (Forum) by metaller on 6/29/2009
  • Button click not fired

    Hello there, I;ve problem with firing button click, on page, that has an update panel and tabcontaner control (all inside master page). Till now, I've solved it by setting CausesValidation to false; But, now, i nedd to validate text in some texbox, and, of course, the validation does.nt work, when CausesValidation is disabled. Here is code of my page: (listview headers, and control labels are in slovak language, for right function irelevant) <asp:Content ID="cntEditSalesOrderContent"
    Posted to ASP.NET AJAX Control Toolkit (Forum) by metaller on 6/26/2009
    Filed under: ajaxcontroltoolkit validation button click
  • Re: Button click not fired

    yep, thanx folks, setting validation group works fine :) thanx ocne more...
    Posted to ASP.NET AJAX Control Toolkit (Forum) by metaller on 6/26/2009
  • Calendar extender: selected date changed on postback

    Hello there once more... Yet another problem in my solution. I have custom control called CalendarControl, consist of label, texbox, image button, and however, calendarextender. Let' get some short desc: After loading page, there's, let's say, 12.12.2009 date int textbox. After clicking on tha image button, and invoking calendar, i change the date to, let's say, 15.1.2010. But, when i do some postback (selectedinexchanged in one of my dropdowns), again, 12.12.2009 is set into the
    Posted to ASP.NET AJAX Control Toolkit (Forum) by metaller on 6/26/2009
  • Re: Calendar extender: selected date changed on postback

    Sure, the date is loaded in form here, but after item changed in drodownlist, postback event is raised, so therefore SetSalesOrder() is'nt invoked. protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { this.SetSaleOrder(); } } private void SetSalesOrder() { switch(controlname) { case "somecontrol" blah... blah... case "usercontrols_calendarcontrol_ascx": CalendarControl cc = (CalendarControl)inCtrl; pi = so.GetType().GetProperty(cc.PropertyName); cc.DateText
    Posted to ASP.NET AJAX Control Toolkit (Forum) by metaller on 6/26/2009
  • Dynamically retype object

    Hello there, does anyone know, how to substitute type declaration in retyping object? I'm setting value in my object class, but i get the error "Cannot convert to..." It goes like this: PropertyInfo pi = null; SalesOrder so = new SalesOrder(); TextBox tb = (TextBox)inCtrl; pi = so.GetType().GetProperty("someproperty"); pi.SetValue(so, ctb.Text, null); Problem is, that when the "someproperty" is other than string type, in my case, is it SystemDateTime?. What i need
    Posted to C# (Forum) by metaller on 6/24/2009
    Filed under: C# type conversion convert.changetype
Page 1 of 3 (21 items) 1 2 3 Next >