how to use request.form[] in inherited web form
问题 I have a Master page and one web form inherited from that master page, the tag is in master page which contains a content place holder inside Master Page: <form runat="server"> <asp:ContentPlaceHolder ID="MainContent" runat="server" /> </form> the web form implement that content place holder. WebForm.aspx: <asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent"> <asp:TextBox ID="tbAmount" runat="server" /> </asp:content> in the code behind web form, I wanna use Request