Web Forms :: Set Last Item Of DropDownList As Selected
May 7, 2015
I am inserting a new states in the table from dropdown list , the dropdown list has new in the list, clicking on new gets me a pop up which takes the new state and inserts in a table. My requirement is I want to get the last inserted state in the dropdownlist and its id to be selected as soon as insertion is done.
The second function is to insert the contact details where i have countryid,stateid,cityid
protected void stateSave(object sender, EventArgs e) {
using (SqlConnection conn = new SqlConnection(cs)) {
SqlCommand cmd = new SqlCommand("newStates", conn);
cmd.CommandType = CommandType.StoredProcedure;
SqlParameter outparm = new SqlParameter("@stateID", SqlDbType.Int);
Here when i click on button it insert all data into table but it didn't insert my selected item from dropdownlist it insert select city that i define in page_load
DDL1.Items.Insert(0, new ListItem("select city", "0"));
And when i delete this code from page load it insert in table first row of my table it didn't insert my selected item from dropdown list.
I have a project that queries a set of times from a database and uses these entries to populate a dropdownlist. Once the page is loaded, the user can select one of the items in the DropDownList. When the "Save" button is clicked, the Selected item value is returned to the [HttpPost] version of the controller action. This item is then stored into session. If the system returns to the page containing the dropdown, I want the saved Value to be selected in the DropDownList. What actually happens is that the DropDownList is always set to be the first item in the list.
Database Table: This data has been imported using Link to SQL
I have items in a sql table that i populate a dropdown list with. so on page load the items are sent to dropdown list. I have a button on the page with the dropdown list that onclick it launches another page that allows more items to be added to the database table.
What I want to do is to refresh/update the list of items in the dropdown list when the second page is closed. In addition the last item added to the table will be the selected item in the drop down list.
1- ddlzone1 2- ddldistrict1 and one button (search)
At first I select item from ddlzone1 click on search button according to below SP it search on database and show result...
ALTER procedure [dbo].[GetCustomersPageWise] @PageIndex INT = 1 ,@PageSize INT = 5 ,@RecordCount INT OUTPUT ,@Region nvarchar(10) ,@District nvarchar(20)
[Code] ...
Now I want when users select item from ddlzone1 after that if they select item from ddldistict1 according to their selected item from ddlzone1 and ddldistrict1 it search in table and show result
Now how I can change my SP
I changed below code in SP but it didn't work
WHERE ([HOuse_info].Region = @Region or @Region='0') or ([House_Info] .District=@District or @District='0') SELECT @RecordCount = COUNT(*)
if (!IsPostBack) { DDL1.Items.Insert(0, new ListItem("select city", "0")); DDL2.Items.Insert(0, new ListItem("select region", "0")); DdlDistrict.Items.Insert(0, new ListItem("select district", "0")); }
And in this page I have btnInsert that when users click on it, it insert data in database
I want when users click on button all textboxs text be clear and all DDL selected Item clear so I set below code in btnInsert event
i have dropdown list in my page that bind it from database
BindDropDownList(DDL3, "Guidcenter", "Centername", "ID"); DDL3.Items.Insert(0, new ListItem(" select all", "0"));
here when users don't select any thing from dropdown list in data base insert 'select all' text but i want if users don't select any thing from DDL in database insert NULL.
I have a bunch of dropdowns in a gridview and I populate them through a datasource.On the databound event i need to change the selected item to the actual selected value from db.
when users click on menubar in index.aspx they go to state.aspx in State.aspx is gridview with 6 Dropdownlist that occording to their selected item from DDL they can see result in gridview
now my problem is :
when i click item from menubar in index.aspx when it go to state.aspx it doesn't show any thing in gridview.
i want at first when users go to state.aspx page they can see all data in gridview after that they select item from DDL and see result according to their selected item
I have one label and one dropdownlist which contain "red" and "blue". When I select "red" from dropdownlist, the label will display "You select RED" and if I select "blue", it will display "You select BLUE". The text is display immediatelly after selected without using BUTTON.
I have try to put the codes in Page_Load but not functioning, below is my code:
[Code]....
Can anyone guide me how to do this and I'm using C#?
URL...I mean when page is loading it show default Item in DDL in red color and show other Item in black color but when I selected another Item from DDL it changed all Items color to red.I want when I changed DDL's Item like before it show selected Item in red color and other items in black color.
1 1115 Iron Test Q2 2 1115 Vacumcleaner Test2 Cv21 3 1117 Carpet Test3 Xs23 4 1116 Furniture Test4 Df23
Region table
Id region 1 1 2 2 3 3 4 4 5 5
Here users product's information are inserted in House_p table and users inforamtion inserted on House_info table
when page is load in my datalist show all product from House_p table
and i bind dropdownlist from region table
here i want when users select their region from dropdown list in datalist show product that are in selected region according to house_info table
now when i select region from dropdown list
EX: i select 1
in my datalist in first page show all product that are in region=1
problem is :when i click on other page of my datalist it showed all product that are in House_p table but i want it showed product that related to my selected item from dropdownlist i means first page is enough i don't want after showing product related
sp
ALTER PROCEDURE [dbo].[GetProducts] ( @Region tinyint = 0 ) AS BEGIN SET NOCOUNT ON; SELECT distinct House_Info.BehCode,
I have a DropDownList in a template column of a GridView control. The GridView is bound to a list of objects. Each object has a property of type int which corresponds to a value in one of the DropDownLists ListItems. I could set the selected item programatically by adding a DataBind event to the drop down, but I'm wondering if there's a way to set the selected item by using a code block in the aspx markup.
i have a gridview which consists of databounds and dropdownlist control. When I press the Add Grid Row Button, it will insert a row. Now my question is, if the user selected an item in dropdownList in the firstrow and the user click the AddGridRowBtn Again which will generate the 2nd row, how would i maintain the selectedItem in the dropdownlist after postback?