Search

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

Matching Posts

  • Re: ModalPopup inside UpdatePanel

    When move the Panel2 and the extender outside the updatepanel, I get the following error message. An extender can't be in a different UpdatePanel than the control it extends.
  • Re: ModalPopup inside UpdatePanel

    When moving Panel2 and the extender, will get the following error message. An extender can't be in a different UpdatePanel than the control it extends.
  • Re: ModalPopup inside UpdatePanel

    Anybody has any solution? Can this be classified as a bug with ModalPopupExtender control? Ricky.
  • Re: ModalPopup inside UpdatePanel

    Guys thanks for all your respond. ShepherdWeb, You are right that I don't need the update panel for ModalPopup but It do need the UpdatePanel for other postback stuff inside Panel1. Jason, I'm not so concern with the close button (Button3) to close the modal popup. The issue is regarding the regular postback of any control within my modal panel (not OkControl and CancelControl). Are saying i must apply the suggested workaround on any control that is doing postback within my modal panel? If so, can
  • Re: ModalPopup inside UpdatePanel

    The code was cut off, here is to entire test code again. Excuse me for the formatting, but I could not get it to work: < asp : Content ID ="Content1" ContentPlaceHolderID ="MainContent" runat ="server"> < asp : ScriptManager id ="ScriptManager1" runat ="server"> </ asp : ScriptManager > < asp : UpdatePanel id ="UpdatePanel1" runat ="server"> < contenttemplate > < asp : Panel id ="Panel1" runat ="server" Height ="50px" Width ="125px"> < asp : TextBox id ="TextBox1
  • ModalPopup inside UpdatePanel

    Hi, I'm having problem when doing a postback on a ModalPopup when this extender is inside an UpdatePanel. The popup screen is always dissapear when I click a button to do postback. I also try adding UpdatePanel (using either UpdateMode=Always or Conditional) inside the popup panel with the same result. Here is my sample code, and let me know what I'm doing wrong here. 1 "Content1" ContentPlaceHolderID= "MainContent" runat= "server" > 2 "ScriptManager1" runat= "server" > 3 4 "UpdatePanel1" runat
    Posted to ASP.NET AJAX Control Toolkit (Forum) by CelebesCoder on 3/29/2007
    Filed under: ModalPopup, UpdatePanel, "AJAX Toolkit"
  • Re: Scheduler firing multiple times a second

    my ISP takes down my account saying I have over 90 connections to the SQL server J, I had the same issue running on version 2.12. The problem lies on GetScheduleItemSettings method in SchedulingDB.vb. You need to add r.Close() before return statement. See this: http://forums.asp.net/619571/ShowPost.aspx HTH, Ricky
    Posted to DotNetNuke (Forum) by CelebesCoder on 5/4/2005
  • Re: Windows Authentication for DNN 3.0

    Steve, I'm using Tam's dnn2 windows authentication at work. I have made several modification to the code such as adding option to choose accessing method, option to reset cache, and xml logging. I'm quite familliar with the code and would like to help in anyway that I could. Ricky S.
    Posted to Core Framework (Forum) by CelebesCoder on 4/7/2005
  • Re: Scheduler - Hi level description?

    One thing to be aware of: because the Scheduler process is running out of process, you won't be able reference HttpContext.Current. I ran into this problem when creating a process to run on Scheduler. The scheduler could not start because of this. HTH Ricky.
    Posted to DotNetNuke (Forum) by celebescoder on 3/3/2005
  • Re: Thread safe dataprovider model?

    BigKat, I'm not really an expert on the provider pattern , perhaps somebody else can chime in on this. But looking from a Singleton Pattern perspective, you are correct that we are sharing one INSTANCE of SqlDataProvider. I would think that you can add SyncLock to: Private Shared objLock as Object As New Object() ' return the provider Public Shared Shadows Function Instance() As DataProvider SyncLock objLock If objProvider Is Nothing Then objProvider = New DataProvider() End If End SyncLock Return
    Posted to DotNetNuke (Forum) by CelebesCoder on 2/19/2005
Page 1 of 3 (29 items) 1 2 3 Next >