-
When there is data in Access DB, DetailsView disappears? However, when data is present in db, then Detailsview is visible. How can someone insert data with a db that contains no data? It works perfect when data is present in db (insert, delete, update). I looked around for answers without any luck. Any...
-
Hello all, I have a DetailsView bound to an ObjectDataSource . The DetailsView has 2 Template Fields . Each template field hast a DropDownList bound to an ObjectDataSource . DropDownList2 depends on DropDownList1. My problem is that when I try to set the SelectParameters using Visual Studio, I select...
-
I have a search field set up that users can search for when the search is executed is populates the gridview with people(and peopleid) from the results of a sql stored proc. I have a details view that allows a user to click the select button on the gridview which then allows them to enter more info for...
-
i have the following code: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load DetailsView1.DefaultMode = DetailsViewMode.Insert DetailsView1.AutoGenerateInsertButton = True End Sub the inserting event for the detailsview's objectsource isn't firing. anybody...
-
Hi all. I have Detalisview and I would like to execute Javascript function on Detailsview.PageIndexChanged. I
have some serveside code executing on Detailsview.PageIndexChanged, but
also need to call an Javascript function on that event. Is that possible? How do I do that?
-
Hi, I am a newbie to asp.net and am using ASP.NET 3.5 with VB. I am developing an app that pulls data from an Access database and have a DetailsView form for Editing and Adding records that works fine. I want to add some code to this form so that a default value is provided for one of the fields when...
Posted to
Web Forms
(Forum)
by
Jerryk
on
05-15-2009, 12:00 AM
Filed under: web form, .NET 3.5, DetailsView, .ASPX, .aspx.vb
-
Is this possible? Can't find any reference that addresses this in the context below, which basically means splitting up the Detailsview with a number of Accordions: DetailsView Accordion 1 EditTemplate for Field 1 EditTemplate for Field 2 /Accordion 1 Accordion 2 EditTemplate for Field 3 EditTemplate...
-
I have a textbox that I want to have a default value in. This value is the UserName of the person logged in. I have created a variable and can make the TextBox display this normally but I cant get this to work when the TextBox is inside a DetailsView. I already have working <asp:TextBox ID="txtName"...
-
I am using VS 2008 SP1, IE 6.0, I have a GridView inside of a DetailsView and I am editing the GridView rowItems. Inside of the GridView I have a LinkButton with a CommandName="Edit". This Edit linkButton fires the " RowCommand" the correctly returning "e.CommandName=Edit"...
-
Hi, I have set up a SQLCommand, dataset, datatable etc and am reading in the first records' data successfully in to my form. I now want to be able to move back and forth through the records, refreshing my text fields each time. It was suggested that I use GridView and DetailsView controls to provide...