FormView is a data-bound control that is nothing but a templated version of DetailsView control.

learn more… | top users | synonyms

0
votes
0answers
15 views

Get values from dropdown menu's, run query and add values to formview c#

I have a asp.net webform which contains a formView, 3 dropdown menus and a submit button. The dropdown menus get their values from the database. When the user clicks the submit button values from the ...
-1
votes
1answer
40 views

Databinding in dropdownlist in FormView

I have a asp:formview. In its edit template i have 6 drop downs that is a pair of Country,State and City. Requirements: On page load Country1 and Country2 get populated. On selected index chnage of ...
0
votes
2answers
27 views

Replacing a TextBox with a DropDownList in InsertItemTemplate

I thought this would be easy and straightforward, but I seem to be having an issue with it. Basically, I have this in a formview: <asp:TextBox ID="StatusTextBox" runat="server" Text='<%# ...
0
votes
1answer
15 views

FormView Update Parameters as An Object

So my formview has about 30 fields. Is it possible I can send all these parameters as an object to my update method, rather than sending each one of them separately as a parameter? Thanks --
0
votes
2answers
32 views

asp.net FormView Data Binding with a Collection of Data

I have a collection of records, each record has an ID and a description. Now in my formview I have 8 textboxes and I want each text box to hold description of each record. So if I do this ...
0
votes
0answers
18 views

File Upload and DB write from within a ASP.NET form view

I am in the process of building a store site that sells board games and I would like to give the admin users the ability to upload images (and write to a DB) for products and have pages that call the ...
0
votes
1answer
35 views

Why do ASP elements in templates not exist in current context?

In my ASPX file, I have an InsertItemTemplate inside of an ASP:formview. The template consists of a form made with asp:textbox, droplists, etc. The form is going to nothing but take the user input, ...
0
votes
2answers
26 views

OnClientClick doesnt work in Formview asp.net

I am working in asp.net vb.net. I have a datagrid with a update button like this : OnClientClick="return ('Succesfully updated!')"> Which works like a charm. And I have this one in ...
0
votes
0answers
13 views

How to use the FileUpload to upload an Image for a Visual Web Developer website in FormView

I'm trying to upload a picture to my website by using the FormView in Visual Web Developer 2010 Express. I have drag and dropped the FileUpload button into my FormView. I want the image to insert when ...
0
votes
2answers
54 views

asp.net file upload inside formview always return false (not in updatepanel)

I am using fileupload control inside formview edittemplate <asp:FileUpload ID="fileup_profilfoto" runat="server" /> <asp:RegularExpressionValidator ID="RegularExpressionValidator1" ...
0
votes
1answer
60 views

asp.net formview (using object datasource) postback insert

I have a formview which using objectdatasource and default mode = insert... but after I inserted item if you refresh page inserting again and again....I tried Is.postback control but couldnt prevent ...
0
votes
0answers
41 views

disable a button in a FormView

I have a button in a formview and would like to make a button invisible if a condition is false. for the first record the below code works fine. FormView1.FindControl("btnnext").Visible = false; ...
1
vote
4answers
79 views

SQL-Update ASP.NET

I am pretty new to asp.net. I made this update sql statement: Dim dbconn As SqlConnection Dim dbcomm As SqlCommand dbconn = New ...
0
votes
0answers
43 views

Can't delete record in formview when a value is NULL

I am having problems deleting a record in a FormView that is wired up to a LinqDataSource. The table the LinqDataSource is using allows NULL values for almost all fields. If I create a new record in ...
0
votes
0answers
48 views

Updating FormView on ListBox SelectedIndex Changed

I have a ListBox containing a database table info. I want it so that when I click on an item from the ListBox, the FormView1 updates with info related to the listbox selection (without refreshing ...
0
votes
0answers
31 views

How to create a FormView with a section that can toggle visiblity

I'm working on a form where users can select a former employer from a drop down, or if they select "Other" a section of the form will become visible so they can enter their own custom information. ...
0
votes
0answers
42 views

Sorted Gridview Select Wrong Item in FormView (using EntityDataSource)

I have GridView: <asp:GridView ID="CenterGridView" runat="server" AllowPaging="True" AllowSorting="True" DataKeyNames="PkCenterID" DataSourceID="CenterEntityDataSource" ...
-1
votes
1answer
29 views

How to hide a single formview row

Im trying to hide a single row of my formview based on the current state of my session variable. Currently I am attempting to encase the row in an update panel then simply set the Visible property to ...
0
votes
1answer
62 views

How to size UIWebView in a UIModalPresentationFormSheet?

I tried every permutation known to mankind and I cannot get a UIWebView to size properly in a modal form view for the iPad. The web page still displays the full iPad portrait width of 768 points. ...
0
votes
1answer
38 views

Ideal Asp.Net control for Edit,Delete and Insert

I haven't touched front end for a very long time. I am not really aware of what advancements happened in Asp.net Data Bound controls. Can any one tell me any control got introduced or the best control ...
0
votes
2answers
62 views

FindControl of a Formview which is inside an user control

I have a Multiformview inside my aspx page like: <data:MultiFormView ID="mFormView1" DataKeyNames="Id" runat="server" DataSourceID="DataSource"> <EditItemTemplate> ...
0
votes
1answer
92 views

Changing the FormView record while in insert mode

I have 2 ObjectDataSource's - 1 for the GridView and 1 for the FormView. I enabled selection on the GridView and all is well; the page loads, you select a record, and the FormView populates with the ...
0
votes
0answers
275 views

Validating text box in FormView using jQuery validate engine

I am trying to integrate the jQuery validate engine in my aspx file with a formview. However, it seems that jQuery validate engine doesn't work with formview. I tried using the parent <form> tag ...
0
votes
1answer
114 views

Django: ListView with post() method?

I am trying to process two forms in a Django class based view. The site contains a form called form (based on GET) for narrowing the list results of the ListView and the second form status_form (based ...
0
votes
1answer
217 views

how to check if textbox is not empty in formview

i have a page where i can create users that can then log into the page. on the page where i create the users, there is a formview. in this formview there are multiple textboxes and dropdownlists. how ...
0
votes
0answers
303 views

Asp.net Formview using C#

I have a formview that binds to an objectdatasource. Which the objectdatasource is getting its values from a list collection. There are few textbox controls I had to switch out for dropdownlist in ...
0
votes
0answers
57 views

Export a formview with checkboxes and radiobuttonlists to pdf using iText?

How to export a formview that includes checkboxes and radio button lists to pdf using iText? Thanks much.
3
votes
4answers
255 views

Filter FormView by Query String

I have a FormView wired up to a LinqDataSource that I'd like to filter by query string. Basically, if an ID is passed in through the query string, I'd like to only show that record, otherwise if no ID ...
0
votes
2answers
284 views

asp.net cannot access update panel inside login view inside formview controls

I have formview inside loginview inside updatepanel control and formview contains a linkbutton.I have to register link button as updatepanel trigger. <asp:UpdatePanel ID="UpdatePanel1" ...
0
votes
1answer
95 views

How do I keep an edit button hidden in a formview after using a filterexpression?

I'm trying to have a user/admin scenario for editing a formview. What I have is the Edit buttons in the formview be visible=true by default. Then I use a statement which says if the role is not equal ...
0
votes
1answer
44 views

How can I catch the error when trying to not print empty fields in FormView ASP.net?

I'm trying to build an address in FormView that is dependent from a GridView which has a list of contact names. When I click the select button next to bills name from the GridView, it shows me bills ...
0
votes
1answer
96 views

Getting data from a FormView's currently bound row

I have a FormView with paging bound to a SqlDataSource. I am trying to find out how to access the datasource currently bound to the FormView. For example, if I am on page 2, how do I access the ...
0
votes
0answers
424 views

Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control

I'm new in asp.net, and this question maybe a repeat, but I can not solve my specific problem. I have two gridviews and a formview in an asp.net page. The first gridview shows some information from ...
1
vote
1answer
249 views

FormView dynamic templates does not send form values on insert/updates

I am getting following error when I click Insert button on a dynamically loaded templates for FormView. The default form mode is set to insert. I do see insert template loading fine. I have ...
0
votes
1answer
98 views

repeater Button event in formview asp.net

ItemCommand contains RepeaterCommandEventArgs which has two important fields: CommandName CommandArgument how to get Button event,get asp:DropDownList select values <asp:FormView runat="server" ...
0
votes
0answers
295 views

ASP.NET Calender Control in Form View Template

I'm trying to capture the selecteddate from a calender control which is inside a form view item template. The problem is, I can't directly access the calender control in the code behind, I tried to ...
0
votes
1answer
33 views

Formview with ListBoxes and user control

I have a FormView that contains three list boxes and a user control. The user control is a grid that inserts and updates data while the form is in edit or insert mode. The problem I am having is that ...
0
votes
0answers
186 views

Asp.Net - Formview - Event Firing - ItemInserted

I've a FormView with an insert mode. I'm throwing an exception in the ItemInserting Event which I excpect to catch in the ItemInserted event using the FormViewInsertedEventArgs, however, the event ...
0
votes
2answers
204 views

Custom Paging With LinqDataSource & Formview

I am trying to to use a LinqDataSource's Selecting event to filter data in for a FormView, however I can't seem to get it to page properly. I can manage to get only one record to show in the FormView ...
0
votes
0answers
122 views

CheckBoxLists In FormViews Cleared On Postback

I know this is a perennial problem that is talked about on lots of forums, and I already know of a workaround, but I just wanted clarification that there isn't a better way. I have a page (written in ...
0
votes
0answers
60 views

current date inserting in edit mode of formview in asp.net

I hope, You can help me. I want to auto fill in rows in asp.net formview with username and datetime same as in girdview. Current date insertion in edit mode of Grideview in asp.net framework Can ...
1
vote
1answer
94 views

Is there a way to tell if my FormView is in Edit mode?

I have some code for my FormView that fires on the DataBound event. Unfortunately (for what I'm doing, anyway) it fires the same whether it's first rendering the page or if I just clicked Edit. I ...
1
vote
1answer
349 views

Procedure or function 'xyz' has too many arguments specified

I know this type of question has been asked at least a dozen times on SO, but I've gone through all the previous questions and answers I could find here and none that I have found apply. I am using ...
0
votes
1answer
249 views

How to Post asp:FormView in ASP.NET WebForms by ajax of Jquery with model binding?

I'm using FormView of ASP.NET WebForms and this form is posted to a method by clicking on a button inside FormView: <asp:Button ID="btnSave" ClientIDMode="Static" ...
0
votes
0answers
319 views

Cascading dropdown in insert template of formview vs2010 vb.net

I am trying to create two dropdown lists where one dropdown is based on the selected value of the first dropdown. The data comes from a SQL database. If I do this when the two dropdowns are simply ...
-1
votes
1answer
151 views

Nested FormView with UserControls, events not firing correctly

I'm in the process of reworking a pretty complicated form. This form has multiple sub forms. The original incarnation was to create all of these panels that were hidden and such (no my design, what ...
0
votes
0answers
266 views

Set selectedvalue of radcombobox in listview template OnDataBound

I'm trying to set the SelectedValue of a RadComboBox in my DataBound event handler. I know how to do this in a RadGrid when I'm handling the *Item*DataBound event (like in a RadGrid). But I can't ...
0
votes
0answers
111 views

Set SelectCommand of Formview DrowDownList DataSourceControl

I need to set the SelectCommand for a data control source that is for a dropdownlist control inside a formview. I've not been able to locate an example online or anyone else inquiring. background I ...
0
votes
1answer
217 views

Databound FormView with DropDownList Questions

I am trying to achieve the following: Eliminate the FormView’s default edit link button. Display the FormView in edit mode on Page_Load with current data and additional DDL data selections. ...
0
votes
1answer
98 views

Input field to populate GridView

I have the following code which defined my input field and my button: <p> <asp:TextBox ID="input" runat="server"></asp:TextBox> &nbsp;<asp:Button ID="submit" runat="server" ...

1 2 3 4 5 7