Click here to Skip to main content
15,896,557 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: getting problem in model window Pin
Abhijit Jana17-Jan-09 1:09
professionalAbhijit Jana17-Jan-09 1:09 
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 
Yeah, I have done that. But still it is not firing. Following is my full code:
HTML Code:
------------
<td>
<asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional">             
<ContentTemplate>
<asp:DropDownList ID="CompanyList" CssClass="PCMSDropDown" runat="server"               Height="22px"  Width="155px" AutoPostBack="True" AppendDataBoundItems="true"          
onselectedindexchanged="CompanyList_SelectedIndexChanged">
<asp:ListItem Selected ="True" Text="--Please Select--"></asp:ListItem>
</asp:DropDownList></ContentTemplate>
</asp:UpdatePanel>
<asp:UpdateProgress ID="UpdateProgress2" AssociatedUpdatePanelID="UpdatePanel2" runat="server" >
<ProgressTemplate>
<span class="ProgressBar">Data Loading.Please Wait....</span></ProgressTemplate>
</asp:UpdateProgress></td>
<td>
<asp:DropDownList ID="ProjectList" runat="server" CssClass="PCMSDropDown" 
Height="23px" Width="155px"></asp:DropDownList></td>



Codebehind:
-------------
protected void CompanyList_SelectedIndexChanged(object sender, EventArgs e)
{
{
int CompanyId = Convert.ToInt32(CompanyList.SelectedValue);
Pcms.Business.Project p = new Project();
DataSet dsprojects = p.GetProjects_Companywise(CompanyId);

ProjectList.DataSource = dsprojects.Tables[0];
ProjectList.DataTextField = "ProjectName";
ProjectList.DataValueField = "ProjectId";
ProjectList.DataBind();
UpdatePanel2.Update();

}
}
Please correct me if I am doing wrong anything here.

Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.

GeneralRe: Multiple Update Panels in a Page not firing Pin
Abhijit Jana17-Jan-09 0:09
professionalAbhijit Jana17-Jan-09 0:09 
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 

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.