Click here to Skip to main content
15,913,941 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: getting problem in model window Pin
NidhiKanu17-Jan-09 1:54
professionalNidhiKanu17-Jan-09 1:54 
Question[newbie] Wizard Control Pin
jon-8016-Jan-09 22:37
professionaljon-8016-Jan-09 22:37 
AnswerRe: [newbie] Wizard Control Pin
Abhijit Jana16-Jan-09 23:54
professionalAbhijit Jana16-Jan-09 23:54 
GeneralRe: [newbie] Wizard Control [modified] Pin
jon-8018-Jan-09 8:45
professionaljon-8018-Jan-09 8:45 
QuestionMultiple Update Panels in a Page not firing Pin
meeram39516-Jan-09 21:17
meeram39516-Jan-09 21:17 
AnswerRe: Multiple Update Panels in a Page not firing Pin
Abhijit Jana16-Jan-09 21:31
professionalAbhijit Jana16-Jan-09 21:31 
GeneralRe: Multiple Update Panels in a Page not firing Pin
meeram39516-Jan-09 23:29
meeram39516-Jan-09 23:29 
GeneralRe: Multiple Update Panels in a Page not firing Pin
Abhijit Jana17-Jan-09 0:09
professionalAbhijit Jana17-Jan-09 0:09 
If I am not wrong, I have got your problem Laugh | :laugh:
meeram395 wrote:
<asp:dropdownlist id="CompanyList" cssclass="PCMSDropDown" runat="server" height="22px" width="155px" autopostback="True" appenddatabounditems="true" xmlns:asp="#unknown">
onselectedindexchanged="CompanyList_SelectedIndexChanged">
<asp:listitem selected="True" text="--Please Select--">


Add one more Item in DropdownList
and Try Again Smile | :) . It will work. Because you have only one item in your list and when you are changing the index its not firing. OMG | :OMG: So just add one more item and run and test.

Let me know when done Smile | :)


BTW FYI : I have done this one

My aspx Code

<asp:updatepanel id="UpdatePanel1" runat="server" updatemode="Conditional" xmlns:asp="#unknown">
                <contenttemplate>
                    <asp:dropdownlist id="DropDownList1" runat="server" autopostback="True" onselectedindexchanged="DropDownList1_SelectedIndexChanged">
                        Width="138px">
                        <asp:listitem>select</asp:listitem>
                        <asp:listitem>Data1</asp:listitem>
                    </asp:dropdownlist>
                </contenttemplate>
            </asp:updatepanel>
        
        <asp:updateprogress id="UpdateProgress1" runat="server" xmlns:asp="#unknown">
            <progresstemplate>
                Please Wait.......... Loading ....
            </progresstemplate>
        </asp:updateprogress>


and code behind

protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {
        System.Threading.Thread.Sleep(1000);
        UpdatePanel1.Update();
        
    }


Don't confused with System.Threading.Thread.Sleep(1000); statement, I have just use it to give some delay (where you are loading your data Wink | ;) )

cheers,
Abhijit
CodeProject MVP
My Recent Article : Exploring Session in ASP.Net

GeneralRe: Multiple Update Panels in a Page not firing Pin
meeram39517-Jan-09 17:41
meeram39517-Jan-09 17:41 
GeneralRe: Multiple Update Panels in a Page not firing Pin
Abhijit Jana17-Jan-09 19:54
professionalAbhijit Jana17-Jan-09 19:54 
GeneralRe: Multiple Update Panels in a Page not firing Pin
meeram39518-Jan-09 23:31
meeram39518-Jan-09 23:31 
QuestionSession probs??? Pin
Member 387988116-Jan-09 19:09
Member 387988116-Jan-09 19:09 
AnswerRe: Session probs??? Pin
Abhijit Jana16-Jan-09 19:27
professionalAbhijit Jana16-Jan-09 19:27 
AnswerRe: Session probs??? Pin
Aman Bhullar16-Jan-09 19:33
Aman Bhullar16-Jan-09 19:33 
Questionset the cursor at the end of textbox Pin
dilip51416-Jan-09 18:36
dilip51416-Jan-09 18:36 
AnswerRe: set the cursor at the end of textbox Pin
Abhijit Jana16-Jan-09 19:31
professionalAbhijit Jana16-Jan-09 19:31 
Questionhelp me Pin
ArunRevathy16-Jan-09 17:56
ArunRevathy16-Jan-09 17:56 
AnswerRe: help me Pin
N a v a n e e t h16-Jan-09 18:29
N a v a n e e t h16-Jan-09 18:29 
AnswerRe: help me Pin
Abhijit Jana16-Jan-09 19:09
professionalAbhijit Jana16-Jan-09 19:09 
AnswerRe: help me Pin
Christian Graus17-Jan-09 0:25
protectorChristian Graus17-Jan-09 0:25 
QuestionUnable to get the response code from authorize .net Pin
vnr16-Jan-09 17:35
vnr16-Jan-09 17:35 
AnswerRe: Unable to get the response code from authorize .net Pin
N a v a n e e t h16-Jan-09 18:31
N a v a n e e t h16-Jan-09 18:31 
QuestionEditing rows in a GridView Pin
Cyberpulse16-Jan-09 15:37
Cyberpulse16-Jan-09 15:37 
AnswerRe: Editing rows in a GridView Pin
Jon Rista16-Jan-09 15:48
Jon Rista16-Jan-09 15:48 
GeneralRe: Editing rows in a GridView Pin
Cyberpulse17-Jan-09 21:17
Cyberpulse17-Jan-09 21:17 

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.