Forms Data Controls :: Losing DropDown Selections After Insert?
Dec 30, 2010
I have a FormView that is used to insert records into a table. It is set to a default mode of insert. When I click a LinkButton it makes the FormView visible and populates a DropDown List control via code. When I click the Insert button, it inserts the record into the table but then the DropDown List selections disappear. How can I keep the selections so that I only have to fill it once?
View 3 Replies
Similar Messages:
Mar 12, 2010
I have a drop down that lists all our 40+ locations.. I then have a list box with all our locations as well. The client is presented with the question which locations have you worked at before. If they pick say 3 locations, i need to remove or disable those 3 from the drop down. I have other code for creating a drop down, but not sure where to go with this.
Here is my code for the controls and code behind:
[Code]....
View 17 Replies
Dec 14, 2010
I am attempting to bind data from a dropdown list that was populated from another datasourceID. I've bolded what I believe is relevant to this issue in the code below. But basicly its binding the proper county on the pull down menu but when I hit form submit it dosnt postback that info instead its null.
[code]....
View 14 Replies
Jul 23, 2010
I have a requirement to allow users select multiple "Agencies" and populate the "Types" based on that selection. Cascading Drop down would have been a great fit if there is no mutliple selection involved. I am wondering if I could use a popup dropdown with chekcboxes. However, these checkboxes need to be populated dynamically by a web service. I am not very familiar with AJAX toolkit and what control would work best in this case.
View 1 Replies
Feb 6, 2011
I have a dropdown with names of project managers and a checkboxlist with names of team members. What I want to do is write the IDs of selections made from the dropdown and checkboxlist to the DB. I am using the following code, but only IDs from the checkboxlist are stored in the table. What can I do to store the ID from the dropdown simultaneously? Thanks for your help.
for (int i = 0; i < project_members.Items.Count; i++)
{
if (project_members.Items[i].Selected)
[code]...
View 2 Replies
Nov 11, 2010
New at SQL and ASP.NET C#, bear with me. I have a form to insert into mulitple tables of a sql db. The form includes two listbox's, categoryIDlistbox and subcategoryIDlistbox, both with the ability to select multiple choices. Idea is that there is one record for the user created (Table1) and then that user can have multiple categories and subcategories assign to him/her in Table2
Table1:
userID
fname
lname
etc...
Table2
userID
categoryID
subcategoryID
If I understand correctly I need to use an array to take the multiple listbox items and save them to the tables. Not sure where the array goes in my code behind page to process the listbox and loop for muliplte selections. Here's my current code behind, where do I place the listbox array?
[Code]....
View 4 Replies
Sep 9, 2010
I am having an dropdownlistbox and fileupload control.After selecting a file from upload control,if i change the dropdownlist value(postback occurs) then the file path i choosen earlier is shown empty.
here is my code:
<asp:Label ID="lblupload" runat="server" Text="Upload a file: "></asp:Label>
<asp:FileUpload ID="upload" runat="server" Width="320" Height="18" BorderColor="Gray" BorderWidth="1" />
<asp:Label ID="Perimission" runat="server" Text="Perimission"></asp:Label>
<asp:DropDownList ID="ddlState" runat="server" OnSelectedIndexChanged="ddlState_SelectedIndexChanged" AutoPostBack="true" >
<asp:ListItem Text="Everybody" Value="Everybody"></asp:ListItem>
<asp:ListItem Text="Students" Value="Students"></asp:ListItem>
<asp:ListItem Text="Selected Users" Value="Selected Users"></asp:ListItem>
</asp:DropDownList>
View 3 Replies
Jul 18, 2010
I have a datagrid which retrieves particular columns from an SQL database table. I also have a checkbox appended on to each row, so that selections can be made against rows of the users choice (i.e. select photos to add to favorites).
How can I code this (in VB.NET) so that these checkboxes are processed sequentially? I have heard an "array" might be best for this, but don't know how to code it. Essentially, I want the VB.NET to look through the datagrid list and to process only those rows with checkboxes checked, by applying some SQL based on these selections.
View 3 Replies
Feb 3, 2010
Using SQL Server 2008, C#, .Net 3.5
I have two tables - Reports, Usage
Report table:
RId
RName
RGroup
Usage table:
UId
UUser
What I want to do is make a page that will list all the reports in the Reports table and have a checkbox next to each name. A user can check each report they use and when they click "submit" it will insert each ReportID into the Usage table.I'm guessing that I should use a GridView to display all the Reports?How would I make it so that the "submit" button would insert each "checked" record into the Usage table?
View 8 Replies
Feb 20, 2011
I'm storing details about clothing in a database, and I need to save multiple entries for colour. For example, a user selects a top, and then needs to select the colours red, black, white and blue from say a group of tick boxes. How should I store this infomation, and what web controls would I use to help the user make there selection?
View 10 Replies
Aug 18, 2010
i've created a webform with one gridview having connected with the database using datasource. i.e password database with three colomn .
now want to insert the custom dropdown button using server control for each column.
when i select the dropdown list the list should display the value as required.
e.g if i click the uname dropdownlist then it should show the list of names.
if i click on pwd dropdownlist then it should show the list of numbers.
if i select any one of the value in the dropdown list then it should insert into the
database.
can i get code on this type of question...?
View 3 Replies
Aug 19, 2010
I have a gridview, in which i placed checkbox as Itemtemplate. My need is to restrict the user from selecting more than 'N' number of selections.
Eg: Gridview contains 50 records, that means 50 check boxes.
Max permitted selections: 10.
After the 10th checkbox selection, user should be prompted that..
"No more selections.. blah blah... "
Should i go for looping through records.. or is there any better way..
View 5 Replies
Nov 3, 2010
i have a global field called hotelId. i then have this piece of code that gets a value from gridview row:
[Code]....
the local variable is assigned to my global one, which gets passed to my method along with other variables. while stepping through i can see the value is set, but when i hit the submit button variabl is passed to another method except my hoteId. it gets lost...
View 3 Replies
May 20, 2010
I have a gridview with auto Edit buttons... when I click on Edit button it is losing it row and column colors.We are initially setting the gridview colors in the page_load event.
View 3 Replies
Jun 22, 2010
i read the tutorial on msdn,what i want is to basically make astructure like of gridview, but not gridview.i want that when a post back occurs by any control the table does not lose its data, it preserves its state.as a result i am not able to add rows to the table in an increment fashion, everything gets destroyed on postback.
[CODE]...
View 1 Replies
Jan 11, 2011
I have the following gridview...
[Code]....
And inside that gridview you can see I have a dropdownlist called dpdTrueFalse. That dropdown has two values which I am loading from code behind like this...
[Code]....
I have a submit button outside that gridview that checks each row and the selected value in the dropdown. But for some reason, even if you select another item in the dropdown, it always selects the first item in the dropdown when I click the submit button. I reckon its because of the postback.
View 5 Replies
Sep 3, 2010
i have a dropdown with month names if the user has data for the month tht is selected then gridview displays the rows with day nos as per the month but if the gridview has no data for the same the dropdown or gridview via some event should call a insert procedure to insert data into the table for tht month with daynos ad rebind the gridview witht the rows just created
View 6 Replies
Aug 18, 2010
Using the code below, I am able to load my dynamic dropdownlist and supply it's selectedindex. But when I fire the update command I can see that the information displayed has been lost.
when I fire the update I don't lose data!
[Code]....
View 3 Replies
May 15, 2010
I have a dropdown list inside a gridview:
[Code]....
View 12 Replies
Mar 4, 2011
I have a gridview where i have two fields. one is product and second is sub category.
I need to do 2 things.
1. I need to populate the two combos from the database. But depending what is selected in dropdown 1 this will determine what needs to be populated in drop down 2?
how can i achieve this?
View 2 Replies
Oct 14, 2010
I have two dropdown linked with sqldatasources.When I select item in ddl1 then on the basis of selection ddl2 is being loaded.Is there any possiblity that if I select ddl2 then ddl1 will also load on the basis of selection?
View 3 Replies
Feb 19, 2010
I currently have a gridview that has 1 column with radiobuttons. I then have a update button to update all the selected records. But what i want to do is add a step before the update. I want to add a multi-line textbox for each radiobutton selected to allow them to add notes/comments for each record before the update occurs.
Because the textbox will be large to allow them to enter the comments, i wanted to list them out seperately per record selected. Maybe a gridview is not what i need for the 2nd part, but thats the scenario and looking for suggestions on what / how to do it.
Example:
GRIDVIEW1
ID column1 column2 column3 radiocolumn
1 1111 2222 3333 Yes / No (selected Yes)
2 2222 3333 4444 Yes / No
GRIDVIEW2
ID NotesColumn
1 Texbox displays here
View 20 Replies
Jul 29, 2010
I've currently got a form with two dropdown boxes on, and an XML file sitting on the site.
My two drop down boxes are Location and Date and what i'm trying to do it get the Location box to filter the XML and put the dates in the Date dropdown box.
I'm using C#.
Unfortunatly, its not working.
My code is:
[Code]....
and my XML is like this:
[Code]....
why my dropdown boxes are not being populated?
View 3 Replies
Oct 20, 2013
My question is I have multiple Checkbox Lists and i want to compare it and Filter Datalist records on Checkbox list checked event.. (I want filtering something like [URL]
using System;
using System.Collections.Generic;
using System.Linq;
[Code].....
My problem is If first checkbox list is checked and user clicks on second checkbox list then i want to compare both checkboxes and populate result based on both checkboxes.
View 1 Replies
Dec 4, 2012
i want to know how to add checkboxes in listview (e.g: Approve / Dissapprove) and save it to database. i need to submit today
here is my code:
For Each item In ListView2.Items
Dim chk1 As CheckBox = item.FindControl("CheckBox1")
Dim chk2 As CheckBox = item.FindControl("CheckBox2")
[Code]......
View 1 Replies