C
Craig
In VB i can do the following.....
With DataSetThoughtsForm1.tblYourThoughts(0)
.ProfileID = Session("UserID")
.ThoughtName = txtThoughtName.Text
.ThoughtText = txtThoughtText.Text
End With
Is there an equivalent in C# in ASP.NET or do I have to use a for.....next
knowing the number of rows in the dataset and repeat the whole
Dataset.table(0).fieldname dot notation?
Thanks
With DataSetThoughtsForm1.tblYourThoughts(0)
.ProfileID = Session("UserID")
.ThoughtName = txtThoughtName.Text
.ThoughtText = txtThoughtText.Text
End With
Is there an equivalent in C# in ASP.NET or do I have to use a for.....next
knowing the number of rows in the dataset and repeat the whole
Dataset.table(0).fieldname dot notation?
Thanks