C# Tutorials and offshore development in India
    Tutorials   Resources   Forum   Reviews   Communities   Interview   Jobs   Projects   Training   Your Ad Here    
Silverlight Games | Mentor | Code Converter | Articles | Code Factory | Computer Jokes | Members | Peer Appraisal | IT Companies | Bookmarks | Polls | Revenue Sharing | Lobby | Gift Shop |


Prizes & Awards
My Profile



Active Members
TodayLast 7 Days more...






Resources » Articles » ASP.NET/Web Applications »

8:
Now i want that whenever i postback using the autopostback property of the dropdownlist

i should have changes reflected in both the dropdownlists.

So first of all remember to keep the datasource and databinding code sequence inside

if (!Page.IsPostBack).If you simply keep it inside the page load event,every time the page loads it will again overwrite the values and you may lead to a situation in which even if you selecte different values, then also the same value for the selectedindex is returned.So to prevent this always keep your datasource code for the dropdownlist inside if(!Page.IsPostBack)

1: protected void Page_Load(object sender, EventArgs e) 2: { 3: 4: if (!Page.IsPostBack) 5: { 6: 7: ddlCategories.DataSource = CategoryManager.PopulateCategoriesOfPost(post.PostID); 8: ddlCategories.DataTextField = "CategoryName"; 9: ddlCategories.DataValueField = "CategoryID"; 10: ddlCategories.AppendDataBoundItems = true; 11: ddlCategories.DataBind(); 12: ddlUserCategories.DataSource = CategoryManager.PopulateUserCategory(BasePage.UserID); 13: ddlUserCategories.DataTextField = "CategoryName"; 14: ddlUserCategories.DataValueField = "CategoryID"; 15: ddlUserCategories.AppendDataBoundItems = true; ddlUserCategories.DataBind(); 16: 17: } 18: 19: }

Now just go through the code for ddlCategories_SelectedIndexChanged and ddlUserCategories_selectedIndexChanged

1: protected void ddlCategories_SelectedIndexChanged(object sender, EventArgs e) 2: { 3: int postID = Int32.Parse(Request.QueryString["postID"].ToString()); 4: string categoryName = ddlCategories.SelectedItem.ToString(); 5: CategoryManager.RemoveCategoryFromPost(categoryName, postID); 6: ddlCategories.Items.Clear(); 7: ddlCategories.Items.Add("RemoveExistingCategories...."); 8: ddlCategories.Items[0].Value = "-1"; 9: ddlCategories.DataSource = CategoryManager.PopulateCategoriesOfPost(postID); 10: ddlCategories.DataTextField = "CategoryName"; 11: ddlCategories.DataValueField = "CategoryID"; 12: ddlCategories.AppendDataBoundItems = true; 13: ddlCategories.SelectedIndex = 0; 14: ddlCategories.DataBind(); 15: } 16: 17: 18: protected void ddlUserCategories_SelectedIndexChanged(object sender, EventArgs e) 19: { 20: int postID = Int32.Parse(Request.QueryString["postID"].ToString()); 21: string categoryName = ddlUserCategories.SelectedItem.ToString(); 22: CategoryManager.AddCategoryToPost(categoryName, postID); 23: ddlUserCategories.SelectedIndex = 0; 24: ddlCategories.Items.Clear(); 25: ddlCategories.Items.Add("RemoveExistingCategories...."); 26: ddlCategories.Items[0].Value = "-1"; 27: ddlCategories.DataSource = CategoryManager.PopulateCategoriesOfPost(postID); 28: ddlCategories.DataTextField = "CategoryName"; 29: ddlCategories.DataValueField = "CategoryID"; 30: ddlCategories.AppendDataBoundItems = true; 31: ddlCategories.DataBind(); 32: }
In this donot forget to clear the items otherwise you will again get creepy results which are far beyond your expectations.

So the tip of the day is whenever you want to refresh your list with the new changed database values just clear the existing values and than only start inserting the most recent values from the database.

Some people will suggest to Disable the viewstate but i have tried that it can overcome the problem of appending values i.e it stops the appendingvalues which means now it will not remember your existing state but it will cause problems in the situation mentioned above so for me this is the best solution.

If you have a better solution do leave a comment.




DropDownList asp.net Control problems and challanges faced using appenddatabound items and autopostb


Posted Date: 28 Oct 2008    Resource Type: Articles    Category: ASP.NET/Web Applications
Author: Aashish GuptaMember Level: Bronze    
Rating: 1 out of 5Points: 10



Sometimes we need a solution where we have to append certain hardcoded values which are given in the markup and then we have to append some values from the database after these hardcoded values.

These hardcoded value can be a single item saying "Select" or "Remove" or a list of asp list items.

So if we are not following the right steps in the sequence of databinding and clearing items from the dropdownlist control, this control may act a little different as we would have thought and create havoc in our programming life.

Today while building an application i came accross the similar situation where i have two dropdownlists one is "ddlCategories " where current categories to which a post belongs are coming form the datasource it alos has a listitem value which is hardcoded in the markup saying Remove Existing Categories which have a value of -1 and index value 0.

There is one more list called "ddlAddUserCategories" in which all the categories related to particular user are databound using the datasource.

Here also we are having a hardcoded value same as above but having a different text saying that Add Existing Categories....

Markup is give below

1:
2: 4: 5: 6: Remove Existing Categories 7: 9: 11: 12: 13: Apply Existing Categories 14:

Responses


No responses found. Be the first to respond and make money from revenue sharing program.

Feedbacks      
Popular Tags   What are tags ?   Search Tags  
Sign In to add tags.
DropDown List  .  Asp.net  .  

Post Feedback


This is a strictly moderated forum. Only approved messages will appear in the site. Please use 'Spell Check' in Google toolbar before you submit.
You must Sign In to post a response.
Next Resource: ASP.NET MVC – A Step Ahead Series : Part-I
Previous Resource: Exception Handling in Asp.Net
Return to Discussion Resource Index
Post New Resource
Category: ASP.NET/Web Applications


Post resources and earn money!
 
Related Resources



dotNet Slackers

About Us    Contact Us    Privacy Policy    Terms Of Use