Tagged Questions

0
votes
2answers
65 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" …
1
vote
4answers
38 views

online quiz using ASP dot NET

Hii, I need to develop an online quiz website that would be having MCQs. I would want to have one question appearing per page with a Numeric Pager so that the user can go back and forth. I tried …
2
votes
3answers
66 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 …
0
votes
1answer
38 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> …
0
votes
1answer
14 views

Filling data in FormView from different tables

Hi, I am using a FormView in an online quiz page for displaying the questions and RadioButtons (for answers) http://stackoverflow.com/questions/2438219/online-quiz-using-asp-dot-net Now, I need …
0
votes
3answers
71 views

How should I set an asp.net label’s text to some value in another control?

I'd like to set the text of two labels to values found in a FormView on a page (whose data comes from an SQLDataSource.) What's the best way to do this? I'm thinking of using the DataBound event for …
0
votes
1answer
21 views

“Current” object of an asp:FormView bound to an EntityDataSource

I have a FormView with paging enabled. The FormView is bound to an EntityDataSource ... <asp:EntityDataSource ID="MyEntityDataSource" runat="server" ConnectionString="name=MyEntitiesContext" …
0
votes
1answer
16 views

Is it a problem to use the same IDs in different asp.net FormView templates?

I understand that only one FormView template is rendered at any given time, so is it ever a problem to reuse child control IDs? For example, the insert and edit templates are identical in this …
0
votes
2answers
54 views

ASP.net form view blank page problem

Hi Formview1 is databound to SQLSource that has a while condition. this while condition has a term which is a control in my page set by user. The problem is when there is no match (between users' …
0
votes
0answers
26 views

UpdatePanel In formview Insert and updateItem

Hi All, I use a FormView control with InsertItemTemplate and updateItemtemplate. In each ItemTemplate I would like using UpdatePanel with the same web control inside, but it returns me a compilation …
1
vote
2answers
93 views

Linq to SQL: How can I update a formview that has data from multiple tables?

Take a simple example: I have a customer table and an account table both with customerID field. I want to formview that can update data in both tables. FormView: First Name (Customer) Last Name …
0
votes
0answers
17 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 …
0
votes
2answers
84 views

FormView.FindControl() returns null until DataBind()

Why method FindControl() returns null on FormView until call DataBind(). After that it returns everything correctly? What workaround are there? Call DataBind() before first call of FindControl() ?
0
votes
0answers
18 views

How do I get the inserted id (or object) after an insert with the FormView/ObjectDataSource controls?

I have a series of classes that loosely fit the following pattern: public class CustomerInfo { public int Id {get; set;} public string Name {get; set;} } public class CustomerTable { …
0
votes
1answer
76 views

Master(Formview)/Detail(Gridview) c# Example

Does anyone have an example of a formview with a gridview inside the EditTemplate using c#? The datasource of the gridview is a datatable. When setting the dt datasource I get the error Object …

1 2 3 4 5 6
15 30 50 per page