Click here to Skip to main content
15,885,213 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Validation for dropdown Pin
deepseeindeepsy3-Sep-09 22:22
deepseeindeepsy3-Sep-09 22:22 
QuestionAudio and text Captcha Both In One Pin
Sachin Dubey3-Sep-09 19:41
Sachin Dubey3-Sep-09 19:41 
AnswerRe: Audio and text Captcha Both In One Pin
N a v a n e e t h3-Sep-09 20:44
N a v a n e e t h3-Sep-09 20:44 
QuestionAbout displaying label Pin
Prasadsm3-Sep-09 19:18
Prasadsm3-Sep-09 19:18 
AnswerRe: About displaying label Pin
Abhijit Jana3-Sep-09 19:21
professionalAbhijit Jana3-Sep-09 19:21 
GeneralRe: About displaying label Pin
Prasadsm3-Sep-09 19:33
Prasadsm3-Sep-09 19:33 
GeneralRe: About displaying label Pin
Sachin Dubey3-Sep-09 19:44
Sachin Dubey3-Sep-09 19:44 
QuestionProblem in asp.net ajax updatepanel progress Pin
Shahdat Hosain3-Sep-09 19:04
Shahdat Hosain3-Sep-09 19:04 
Hi Dear, I've a serious problem, that is:
I've three asp:Contents in my content page. Content1 for head, Content2 is activated when user is logged in; By contrast, Content3 is for anonymous user.
In my program asp:UpdatePanel works properly in both content(Content2 & Content3). asp:UpdateProgress works properly in Content3(used for anonymous user) but doesn't work for Content2(used for logged in user)

<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>

<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
           <asp:UpdatePanel ID="UpdatePanel2" runat="server">
                 <ContentTemplate>
                 <%=DateTime.Now.ToLongTimeString() %>
                     <asp:Button ID="Button1" runat="server" Text="Button"  OnClick="UpdateButton_Click"/>
                 </ContentTemplate>
            </asp:UpdatePanel> 
             <asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="UpdatePanel2">
              <ProgressTemplate>
                    <img alt="Loading..." src="../Images/ajax-loader.gif" />
                    Please wait...
                </ProgressTemplate>
              </asp:UpdateProgress> 
</asp:Content>

<asp:Content ID="Content3" ContentPlaceHolderID="ContentPlaceHolder2" runat="server">
    
            <asp:UpdatePanel ID="UpdatePanel1" runat="server">
                 <ContentTemplate>
                 <%=DateTime.Now.ToLongTimeString() %>
                     <asp:Button ID="UpdateButton" runat="server" Text="Button" OnClick="UpdateButton_Click" />
                 </ContentTemplate>
             </asp:UpdatePanel> 
                <asp:UpdateProgress ID="UpdateProgress2" runat="server" AssociatedUpdatePanelID="UpdatePanel1">
              <ProgressTemplate>
                    <img alt="Loading..." src="../Images/ajax-loader.gif" />
                    Please wait...
                </ProgressTemplate>
              </asp:UpdateProgress>
</asp:Content>


I don't understand which is my fault. Could you help me?

shahdat

GeneralRe: Problem in asp.net ajax updatepanel progress Pin
Arun Jacob3-Sep-09 19:15
Arun Jacob3-Sep-09 19:15 
GeneralRe: Problem in asp.net ajax updatepanel progress Pin
Shahdat Hosain3-Sep-09 19:25
Shahdat Hosain3-Sep-09 19:25 
AnswerRe: Problem in asp.net ajax updatepanel progress Pin
Abhijit Jana3-Sep-09 19:19
professionalAbhijit Jana3-Sep-09 19:19 
GeneralRe: Problem in asp.net ajax updatepanel progress Pin
Shahdat Hosain3-Sep-09 19:32
Shahdat Hosain3-Sep-09 19:32 
GeneralRe: Problem in asp.net ajax updatepanel progress Pin
Abhijit Jana3-Sep-09 19:32
professionalAbhijit Jana3-Sep-09 19:32 
AnswerRe: Problem in asp.net ajax updatepanel progress Pin
Abhijit Jana3-Sep-09 19:31
professionalAbhijit Jana3-Sep-09 19:31 
GeneralRe: Problem in asp.net ajax updatepanel progress Pin
Shahdat Hosain3-Sep-09 19:51
Shahdat Hosain3-Sep-09 19:51 
QuestionImage in a gridview Pin
swtlibra3-Sep-09 19:02
swtlibra3-Sep-09 19:02 
AnswerRe: Image in a gridview Pin
Abhijit Jana3-Sep-09 19:17
professionalAbhijit Jana3-Sep-09 19:17 
JokeRe: Image in a gridview Pin
Arun Jacob3-Sep-09 19:20
Arun Jacob3-Sep-09 19:20 
JokeRe: Image in a gridview Pin
Abhijit Jana3-Sep-09 19:22
professionalAbhijit Jana3-Sep-09 19:22 
AnswerRe: Image in a gridview Pin
Arun Jacob3-Sep-09 19:17
Arun Jacob3-Sep-09 19:17 
GeneralRe: Image in a gridview Pin
swtlibra3-Sep-09 19:32
swtlibra3-Sep-09 19:32 
GeneralRe: Image in a gridview Pin
Abhijit Jana3-Sep-09 19:33
professionalAbhijit Jana3-Sep-09 19:33 
GeneralRe: Image in a gridview Pin
swtlibra3-Sep-09 20:06
swtlibra3-Sep-09 20:06 
GeneralRe: Image in a gridview Pin
Arun Jacob3-Sep-09 20:14
Arun Jacob3-Sep-09 20:14 
GeneralRe: Image in a gridview Pin
swtlibra3-Sep-09 20:25
swtlibra3-Sep-09 20:25 

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.