Click here to Skip to main content
15,887,349 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Validation Pin
Sandeep Mewara7-Aug-10 7:12
mveSandeep Mewara7-Aug-10 7:12 
GeneralRe: Validation(Please help) Pin
future38397-Aug-10 10:17
future38397-Aug-10 10:17 
QuestionMasterPages and Flash menu Pin
Farraj7-Aug-10 5:31
Farraj7-Aug-10 5:31 
AnswerRe: MasterPages and Flash menu Pin
Not Active7-Aug-10 11:01
mentorNot Active7-Aug-10 11:01 
GeneralRe: MasterPages and Flash menu Pin
Farraj7-Aug-10 11:21
Farraj7-Aug-10 11:21 
GeneralRe: MasterPages and Flash menu Pin
Not Active7-Aug-10 11:30
mentorNot Active7-Aug-10 11:30 
GeneralRe: MasterPages and Flash menu Pin
Farraj7-Aug-10 12:05
Farraj7-Aug-10 12:05 
GeneralRe: MasterPages and Flash menu Pin
Not Active7-Aug-10 12:35
mentorNot Active7-Aug-10 12:35 
"Controls that are triggers for an update panel cause a refresh of the panel's content after an asynchronous postback." http://msdn.microsoft.com/en-us/library/system.web.ui.asyncpostbacktrigger.aspx[^]

So what you have configured is having the ContentPlaceHolder trigger a refresh of the UpdatePanel; however, I believe you want the reverse. Also, since ContentPlaceHolder has no events that can be triggered, nothing will happen. Finally, RegisterAsyncPostBackControl is the code behind is unnecessary since you have already specified it in the markup.
As a matter of convention ScriptManager is usually added to the top of the form.

<form id="form1" runat="server">

      <asp:ScriptManager ID="ScriptManager1" runat="server">
      </asp:ScriptManager>

<uc2:menu1 ID="menu11" runat="server" />

      <asp:UpdatePanel ID="UpdatePanel1" runat="server">
          <ContentTemplate>
      <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server">
      </asp:ContentPlaceHolder>              
          </ContentTemplate>
          <Triggers>
              <asp:AsyncPostBackTrigger ControlID="menu1" />
          </Triggers>
      </asp:UpdatePanel>

      </form>


I know the language. I've read a book. - _Madmatt

GeneralRe: MasterPages and Flash menu Pin
Farraj7-Aug-10 12:53
Farraj7-Aug-10 12:53 
GeneralRe: MasterPages and Flash menu Pin
Farraj10-Aug-10 5:24
Farraj10-Aug-10 5:24 
Questionhow to delete the selected row in grid view on single mouse click Pin
vishnukamath7-Aug-10 1:08
vishnukamath7-Aug-10 1:08 
AnswerRe: how to delete the selected row in grid view on single mouse click Pin
Sandeep Mewara7-Aug-10 3:50
mveSandeep Mewara7-Aug-10 3:50 
AnswerRe: how to delete the selected row in grid view on single mouse click Pin
Rajendra Prasad Panchati17-Aug-10 23:30
Rajendra Prasad Panchati17-Aug-10 23:30 
Questionpage break of rdlc report Pin
Thanusree Duth6-Aug-10 23:59
Thanusree Duth6-Aug-10 23:59 
AnswerRe: page break of rdlc report Pin
Sandeep Mewara7-Aug-10 3:45
mveSandeep Mewara7-Aug-10 3:45 
AnswerRe: page break of rdlc report Pin
pat_vrs10-Aug-10 10:10
pat_vrs10-Aug-10 10:10 
QuestionFTP root folder question Pin
95ulisse6-Aug-10 12:29
95ulisse6-Aug-10 12:29 
AnswerRe: FTP root folder question Pin
NeverHeardOfMe6-Aug-10 13:12
NeverHeardOfMe6-Aug-10 13:12 
GeneralRe: FTP root folder question Pin
95ulisse6-Aug-10 23:53
95ulisse6-Aug-10 23:53 
GeneralRe: FTP root folder question Pin
NeverHeardOfMe7-Aug-10 3:51
NeverHeardOfMe7-Aug-10 3:51 
GeneralRe: FTP root folder question Pin
95ulisse7-Aug-10 4:08
95ulisse7-Aug-10 4:08 
QuestionASP and Html Pin
future38396-Aug-10 5:22
future38396-Aug-10 5:22 
AnswerRe: ASP and Html Pin
Luc Pattyn7-Aug-10 0:10
sitebuilderLuc Pattyn7-Aug-10 0:10 
Questionstring format Pin
Dhyanga6-Aug-10 3:20
Dhyanga6-Aug-10 3:20 
AnswerRe: string format Pin
m@dhu6-Aug-10 3:26
m@dhu6-Aug-10 3:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.