Jul 4, 2007 #1 marcusmco IS-IT--Management Oct 9, 2006 30 AU Hello, Of some reason I cannot get the value from a Label when I try Request.Form("xx"). Is that not possible? Regards, Marcus
Hello, Of some reason I cannot get the value from a Label when I try Request.Form("xx"). Is that not possible? Regards, Marcus
Jul 4, 2007 #2 jmeckley Programmer Jul 15, 2002 5,269 US just pull the value from the label directly. Code: aspx <asp:Label id="MyLabel" runat="server" /> c# this.MyLabel.Text; Jason Meckley Programmer Specialty Bakers, Inc. Upvote 0 Downvote
just pull the value from the label directly. Code: aspx <asp:Label id="MyLabel" runat="server" /> c# this.MyLabel.Text; Jason Meckley Programmer Specialty Bakers, Inc.