kdblack
December 21st, 2006, 06:18 PM
I'm very new to ASP.NET and VB.NET but I'm trying to create a very simple web site. Basically the site will allow users to upload a file to the site and create associated labels. There is an upload form then there will be another form that has the labels on it. I think I have the code to create a label on the upload page but what I want the label on another form. Cannot figure it out. Here is the code I am using:
Dim lblMyLabel As New Label
lblMyLabel.Text = "My Dynamic Label."
Me.Controls.Add(lblMyLabel)
Also, how do a automatically create a link to the uploaded file on the other form?
Thanks,
Keith
Dim lblMyLabel As New Label
lblMyLabel.Text = "My Dynamic Label."
Me.Controls.Add(lblMyLabel)
Also, how do a automatically create a link to the uploaded file on the other form?
Thanks,
Keith