ASP.NET 2.0 BasicsIf you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
Thanks for posting this - Noobie here using DetailsView and trying to pass variables from itemTemplate Label to InsertTemplate textBox. This code works when replacing with a constant but not with variable. Anyone have advice?
Protected Sub DetailsView1_DataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles DetailsView1.PreRender
Dim lblText As Label = CType(DetailsView1.FindControl("SubLabel5"), Label)
If DetailsView1.CurrentMode = DetailsViewMode.Insert Then
Dim ThisControl As TextBox = DetailsView1.FindControl("InsertSubCourseName")
ThisControl.Text = lblText.Text 'Does NOT work!
'ThisControl.Text = "This Works"
End If
End Sub
Protected Sub DetailsView1_DataBinding(ByVal sender As Object, ByVal e As System.EventArgs) Handles DetailsView1.PreRender
If DetailsView1.CurrentMode = DetailsViewMode.Insert Then
Hey guys i've found this way 4 setting a non-modifiable default value within the FormView guess it's the same 4 details view.
I currently have 2 FormViews 1 wich as a master record and the other one holds detail records i'm using the asp:ControlParameter 4 setting this up within the ObjectDataSource, So Here it goes