3
votes
3answers
684 views
Formview problem
I have a form view, in the edit template I have two drop downs.
Drop down 1 is explicitly set with a list of allowed values. It is also set to autopostback.
Drop down 2 is databound to an …
2
votes
1answer
29 views
How do I Get FormView values when I process the form?
On ItemUpdating, I have only found one solution to retrieve field values.
I have not been successful i retrieving only updated values.
Is there a better way, than the way I do it now?
protected …
2
votes
2answers
2k views
DropDownList.SelectedValue changes (as a child control in a FormView) aren’t sticking
Okay, I have a FormView with a couple of child controls in an InsertItemTemplate. One of them is a DropDownList, called DdlAssigned. I reference it in the Page's OnLoad method like so:
protected void …
2
votes
4answers
145 views
Formview Being Cleared
My problem is that all the textbox's my formview are getting cleared when I hit the submit button.
I currently have a page with a small section that has an update panel around it. This small section …
1
vote
0answers
54 views
two-way data binding within a FormView doesn’t work when runat=server is used for the table row
I have an ObjectDataSource set up as follows:
<asp:ObjectDataSource ID="AccountDataSource" runat="server" OldValuesParameterFormatString="original_{0}"
SelectMethod="GetAccountByAccountID" …
1
vote
3answers
84 views
Where Set ListBox Selected index if inside a FormView?
Where in the event life cycle should I set the ListBox.SelectedIndex if the Listbox is contained within a FormView? What I'm trying to do is increase the SelectedIndex by 1 which makes it move from …
1
vote
3answers
201 views
Getting the bound field name at runtime
If you bind a control in a FormView using two way binding (such as Text='<% #Bind("FieldName") %>'), how do you retrieve the field name "FieldName"? There are several things I want to do with this …
1
vote
3answers
179 views
Not able to display content in <EditItemTemplate> in FormView
What am I doing wrong since the content in the < EditItemTemplate > is not displayed when I click the Edit button?
<asp:FormView runat="server" id="fwHotelDetails" DataKeyNames="id" …
1
vote
2answers
72 views
ObjectDataSource trouble
I have been given a small project by the company I have applied for. They want a small application using asp.net GridView, FormView and an ObjectDataSource with a DataSet (xsd) file. I have been doing …
1
vote
2answers
91 views
Form view Insert Mod
hi
i am using formview and sqldatasouce. every thing is fine but when i have no record in my table nothing(no formview) is shown on the page. i want that when my table has no record then formview …
1
vote
0answers
160 views
Formview disappearing on 2nd postback
OK here's my page design... there is a DataList with a "Select" imagebutton. When it is clicked, that item is loaded into a FormView in Edit mode for changes. When the page loads, selecting the first …
1
vote
2answers
750 views
Problem finding a control within a FormView from code-behind
Here the code behind... I'm trying to retrieve this control so I can add items to the drop down list (I'm retrieving the Role Groups to add to the drop down list in the code-behind)
Protected Sub …
1
vote
4answers
2k views
How does FormView EditTemplate update values in ObjectDataSource UpdateParameters under the hood?
Hello gurus,
I have a FormView bound to an ObjectDataSource.
* ObjectDataSource definition (omitted portion of it for simplicity)*
<asp:ObjectDataSource
ID="odsHousehold"
…
1
vote
4answers
284 views
FormView ConvertEmptyStringToNull and binding
I'm using a FormView with an ObjectDataSource and binding using <%# Bind("WhateverProp") %> - and all of my nullable columns are coming back with default values of the type in them.
It appears …
1
vote
4answers
833 views
Controls not retaining values after postback when FormView set to insert mode
I am setting the CurrentMode of a FormView to insert mode using the ChangeMode method in the Page_Load event like so:
if(!Page.IsPostBack)
{
MyFormView.ChangeMode(FormViewMode.Insert);
}
Within …
