Tagged Questions
FormView is a data-bound control that is nothing but a templated version of DetailsView control.
6
votes
4answers
602 views
Assign Event Programmatically to Child Inside FormView
I realize you can declaratively assign an event handler to a child control inside a formview by adding its attribute on the aspx page (i.e. onclick="Button_Click"), but if I wanted to do this ...
6
votes
2answers
6k views
DropDownList in FormView binding
I want to bind dropdownlist to List<MyIem>,
in code behind.
<asp:DropDownList ID="listCategories" runat="server" Height="20px" CssClass="CategoryDropList" SelectedValue='<%# ...
4
votes
2answers
287 views
Automatically bind ASP.NET FormView to newly inserted record
Is it possible to get a FormView to automatically default to ReadOnly mode on the record that it has just inserted via its InsertItemTemplate? It seems like this would be somethign that should come ...
4
votes
2answers
367 views
Are DetailsView /FormView enough rich for Edit and Insert?
Hi
I'm wondering are DetailsView/FormView and ObjectDataSource have enough capability for Inserting/Editing your records or not ?
Or better ask you Do you prefer use them or make your form by your ...
3
votes
2answers
1k views
FileUpload in FormView inside an UpdatePanel
The Scenario:
I have an ASP.Net webpage which I intend to use for letting the user(not the real users, but content manager basically) insert and edit the records in a table using a FormView. This ...
3
votes
3answers
4k views
Using FindControl: Accessing Controls in a Formview
I'm developing a simple Wedding List application, where guests can reserve the present they want to buy for the bride and groom. The Reserve page wraps a few fields inside a couple of panels, all ...
3
votes
4answers
7k views
How does FormView EditTemplate update values in ObjectDataSource UpdateParameters under the hood?
I have a FormView bound to an ObjectDataSource.
* ObjectDataSource definition (omitted portion of it for simplicity)*
<asp:ObjectDataSource
ID="odsHousehold"
runat="server"
...
3
votes
3answers
1k 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
153 views
ASP.NET Formview not correctly updating SQL Database
I have an asp.net Formview connected to an SQL datasource. When I create/edit/delete a record the column data is erased. I'm sure it's some simple incorrect coding as everything I know about ...
2
votes
1answer
235 views
Error when dropdownlist.databind() if I change from FormView.EditMode to FormView.InsertMode
I have a FormView like:
<EditItemTemplate>
<th>Test Name</td>
<td><asp:Label runat="server" ID="lblSuite" Text='<%# Eval("Suite") ...
2
votes
3answers
493 views
Applying CSS to a textbox within a formview control
I am trying to apply css styles to textboxes within a formview. What is the correct way to do this as the form is not applying the styles below is part of the code where i was trying to apply the code
...
2
votes
1answer
221 views
ASP.NET Nested FormView
I have this HTML.
<asp:FormView ID="FormView1" runat="server" DataSourceID="SqlDataSource1">
<asp:FormView ID="FormView2" runat="server" DefaultMode="Insert" ...
2
votes
3answers
556 views
Does custom validator works in FormView?
I have search through google and found that a lot of people is struggling with this issue but i still not found the right answer.
http://i.stack.imgur.com/15jen.png
I have a form view and need to ...
2
votes
2answers
436 views
Getting returned value after insertion in FormView
I need to go to Edit Mode after inserting new item.
OnItemInserted Metod:
protected void fvReport_ItemInserted(Object sender, FormViewInsertedEventArgs e)
{
if (e.Exception == null)
...
2
votes
1answer
446 views
How to go to Edit Mode in FormView?
I have FormView:
<asp:FormView ID="fvReport" runat="server" DefaultMode="ReadOnly" AllowPaging="false" OnModeChanging="fvReport_ModeChanging" DataKeyNames="id">
protected void ...
2
votes
1answer
157 views
LinqDataSource throws a ChangeConflictException for an unknown reason
I'm currently facing an odd problem with an old project. The project uses a FormView to edit data. The FormView is bound to a LinqDataSource. Upon updating the edited object, I do receive a
...
2
votes
1answer
321 views
How to clear FormView data between inserts
I have a formview and I opened it in Insert mode where the fields were all blank as I expected. I then entered some data into the fields but instead of clicking insert I clicked cancel. I then entered ...
2
votes
1answer
125 views
Insert template in FormView with values from another post
I'm working in ASP .NET 4.0 and using the FormView to view/edit/create items in the the DB.
As I have many fields and I want to use an existing row in the DB as a template when switching to insert ...
2
votes
1answer
357 views
Retrieving keys and NewValues within a Formview with manual data binding
I have a Formview binded in the code file to a generic list. Now, upon editing of a record, I wish to access the Keys and NewValues out of the FormViewUpdateEventArgs parameter of the ItemUpdating ...
2
votes
4answers
2k views
Get DateTime Value from TextBox in FormView
I need to find a value in a TextBox, contained within a FormView which holds a short date.
DateTime LastPayDate = (DateTime)FormView1.FindControl("user_last_payment_date");
I get the error:
...
2
votes
1answer
366 views
how can i get last id inserted in formview
i have a form view after inserting record i want to know the last id of inserted record
2
votes
1answer
389 views
How do i bind an image to a <asp:Image /> tag in Form View
First i have a getProfileImage.aspx which accepts a CusID and TN as query strings and display n image. So getProfileImage.aspx?CusID=10&TN=Y will show the image fine in the browser :)
But...
Now ...
2
votes
3answers
3k views
Not possible to load DropDownList on FormView from code behind?
I have a UserControl, containing a FormView, containing a DropDownList.
The FormView is bound to a data control.
Like so:
<asp:FormView ID="frmEdit" DataKeyNames="MetricCode" runat="server" ...
2
votes
2answers
1k views
How to prevent asp:FormView from rendering as a table?
I have an asp:FormView with an ItemTemplate. I'd like to design the content within the FormView with some div elements:
<asp:FormView ID="MyFormView" runat="server" >
<ItemTemplate>
...
2
votes
3answers
573 views
Bind list from FormView to model in ASP.net webforms
For a large fillin form I use the asp.net FormView for the magic databinding to my model. In this model I've a property called Rides (shown below), which exposes a list, which I obviously not want to ...
2
votes
1answer
474 views
How do I Prevent FormView from clearing user's entered Values after Insert Method has fired?
I have been struggling with getting FormViews to work the way Microsoft expects me to for about a day and have figure a bunch of great stuff out.
I can catch e.Exception and e.ReturnValue in the ...
2
votes
0answers
589 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" ...
2
votes
3answers
502 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 ...
2
votes
1answer
353 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
1answer
1k views
How do you save items from a CheckBoxList in a FormView?
I am using a CheckBoxList inside of a FormView with an ObjectDataSource. In order to bind the selected values to the CheckBoxList I am using the *FormView_DataBound* event to find the CheckBoxList and ...
2
votes
2answers
7k 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 ...
2
votes
1answer
3k views
AJAX Tabcontainer inside formview not inserting values
I have a TabContainer inside a data bound FormView (to present the information by category ex: Client Bio data, health history, financial details...). The Update and Insert of the formView doesn't ...
2
votes
4answers
1k 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 ...
2
votes
6answers
4k 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 ...
2
votes
1answer
1k views
ASP.NET: Best practice for binding Usercontrols inside a formview
I need to edit a complex object with complex properties using a web form. For example, editing a "User Information" record that contains all kinds of information about a user, including complex things ...
2
votes
2answers
3k 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
218 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
1answer
32 views
Binding hidden fields in formview
I am trying to use a formview bound to an ObjectDataSource, in the formview I use a couple of hidden fields which hold values required for an insert.
I set the value of these fields server side ...
1
vote
2answers
87 views
DropDownList in .NET FormView loads perfectly the first time, never again
I build a DataTable and populate it with a country abbreviation and country expansion. I make this the DataSource for a DropDownList control within a FormView. To see this FormView, the user clicks a ...
1
vote
2answers
93 views
Need to save text to database in uppercase
I have an asp 4.0 page using a formview and C# code as needed. I have a textbox for "Street Name" add/edit. I have already used CSS text-transform:uppercase which converts the "look" of the text ...
1
vote
2answers
89 views
how to use the value returned by count function in code behind file
i know in sql query one can use count function to return the number of rows affected. I need to make a decision on the code behind file using the value returned by my sql select statement.
...
1
vote
1answer
155 views
How to use dropdown list to update formview display
I'm having a bit of trouble figuring this one out.
I have a dropdownlist (populated from a datasource that concatenates first and last names, and the value is an "employee ID", oh and it's a sql ...
1
vote
1answer
110 views
Using DropDownList as paging function in ASP.Net Formview
I have a Formview that gets populated with SQL data when a dropdown is selected, but when I click edit, it wants to edit the first item on the dropdown list, because technically it still thinks its on ...
1
vote
1answer
116 views
AjaxControlToolkit AnimationExtender - show animation on FormView Insert/Update
In my application, I have a FormView which allows Insert's and Update's. I want to show a message which dissappears after about 2-3 seconds whenever they insert or update. I figured the ...
1
vote
1answer
561 views
Implementing cascading DropDownList binding in a templated control
I have 2 DropDownList controls on my form, the second of which uses the SelectedValue of the first as one of its binding parameters.
Both DropDownList controls are in a FormView.InsertItemTemplate ...
1
vote
3answers
195 views
FormView doesnt enter in insert mode. Why?
<asp:FormView ID="FormView1" runat="server" AllowPaging="True"
DataSourceID="SqlDataSource1" OnModeChanging="FormView1_ModeChanging">
<EditItemTemplate>
ID :
...
1
vote
1answer
177 views
how to insert image to database in formview?
I want to insert image to the database but i don't know how to do that in formview
<%@ Page Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="Default5.aspx.vb" ...
1
vote
1answer
379 views
ASP.NET: How to display a FormView in a (popup) window when item selected in Gridview?
I want my GridView and a FormView (or DetailsView) to work together. When an item in the GridView is selected, I want to open a popup window and display more details about the selected item.
Since I ...
1
vote
2answers
210 views
FormView or not?
I have an ASP.NET page with a Wizard control containing several pages of form fields. The data is collected and inserted to a database from the code behind page. I need to set this form up so you can ...
1
vote
2answers
336 views
How to AutoPostBack in EditItemTemplate?
I have a couple of DropDownLists in a FormView EditItemTemplate. One of them is a list of brokers and the other a list of broker accounts. When the Broker DropDownList is changed, I want the Accounts ...