0
votes
1answer
21 views
How can one notifiy a user that there are uncommitted changes on the ASP.NET DetailsView
I used the ASP.NET DetailsView across my application. I would like to know how I can detect that there are unsaved changes on the DetailsView and notify the user before navigating …
0
votes
2answers
24 views
how to make edit and delte button in details view control visable based on user role
hi,
i am using detialsview control.here i have edit and delete button.
i am using autogenerateitbutton="true" autogeneratedeletebuton="true"
now i have user role as **ad …
0
votes
2answers
28 views
Mode is not changing in detailsview
hi
in details view once i click edit mode. all the controls are getting into edit mode. i make the changes and give update data is updated in database . but still all the c …
0
votes
0answers
10 views
DetailsView events in dynamically loaded UserControl
I'm having trouble getting the DetailsView control to perform update event when placed inside UserControl that is in turn loaded by LoadControl.
That same UserControl(with DetailsV …
0
votes
1answer
11 views
load page with detailsview in insert mode
I have an ASP.Net page with a gridview and detailsview...when I click an item in the gridview, the detailsview is displayed and populated with the details of the selected user from …
0
votes
1answer
16 views
How to get the values which are there in edit item template?
Hi
I have a control placed in edit item template in detail view control. what ever the control I am using I need to access those values in my code behind page that in my item u …
0
votes
1answer
19 views
details view with Dropdownn control
hi,
in the modal pop up i am using detailsview control by default all the data would
be shown in label.
there will be an edit button down once the user clicks edit but …
0
votes
0answers
9 views
how to use 3 different tables in detailsview control[ binding dropdown, listview,detailsview control
hi, i have an req where i have an detailsview control.where i am binding the values that fine. during the [item template]
but in in EditItemTemplate i need to bind …
1
vote
1answer
21 views
About Detailsview
When I write code like this:
<asp:DetailsView ID="DetailsView1" Runat="server" DataSourceID="Vote" DefaultMode="Insert"
AutoGenerateRows="False" DataKeyNames="id" W …
0
votes
2answers
17 views
ASP.NET multiple types of controls to insert a record
Hi SO,
ASP.NET newbie here. I would like to create a form with multiple types of controls for inserting a single record into a database table. This record has a "Type" field which …
0
votes
1answer
61 views
Help with ASP.NET ObjectDataSource
I have a User object with a Load method that takes in a UserId parameter and loads that users data to the objects member variables.
Now what I'd like to do is load this data to a …
0
votes
1answer
28 views
Using a detailsview without sqldatasource
I have a Detailsview object that is loaded with user data when a User is clicked from a gridview. The problem is, I am using a sqldatasource and I'd rather use my pre-exisiting us …
0
votes
4answers
59 views
How to bind an Asp.NET details view to an object with a List<string> property
I have the following example entity object
class Entity
{
public string Name { get; set; }
public IList<string> Fields { get; set; }
}
Now I have a details view bou …
0
votes
1answer
822 views
Upload Image to Database From DetailsView Insert Mode
I am attempting to upload an image to a database via a DetailsView containing an UploadFile control in the Edit Item template.
I have a stored procedure which handles the upload t …
0
votes
1answer
39 views
“Parameters must be named” error - ASP.NET
I am trying to update a DetailsView but I am getting the error "Parameters must be named". I assume that means there is a problem with the markup for the DetailsView. Here is the r …
