DotNetGnat
Programmer
Guys,
This is first time i am trying to create a application in .net (using my asp logic)
OK..i have a created a form...lets say with two text fields and a submit button...lets say this default.aspx.here is how i have the code...showing only the relevant parts
ok now...as you can see i have said method="post" action="process.aspx"
now how can i grab these values in the process.aspx page and display the name or doing some insert statement...
let me know if you need more info...
Thanks...
-DNG
This is first time i am trying to create a application in .net (using my asp logic)
OK..i have a created a form...lets say with two text fields and a submit button...lets say this default.aspx.here is how i have the code...showing only the relevant parts
Code:
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="Default.aspx.vb" Inherits="olpat._Default"%>
<form id="announce" action="process.aspx" method="post" runat="server">
<asp:textbox id="FName" runat="server"></asp:textbox>
<asp:textbox id="LName" runat="server"></asp:textbox>
<asp:button id="Announce" runat="server" Text="Announce Name"></asp:button>
</form>
ok now...as you can see i have said method="post" action="process.aspx"
now how can i grab these values in the process.aspx page and display the name or doing some insert statement...
let me know if you need more info...
Thanks...
-DNG