Jul 4, 2007 #1 marcusmco IS-IT--Management Joined Oct 9, 2006 Messages 30 Location 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 Joined Jul 15, 2002 Messages 5,269 Location 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.