hi all i have been trying and trying to set up a contact page on godaddy. they require that i use a php script here is their example.
it requires that i use a html page . what i want to do is use c#.net which is very similar to html so that i can get my master page included. is there a way to post this similar to the
(form action="/gdform.php" runat="server" method="post)
from javascript or code behind?
my second question is how do i include a captcha and verify it, then send the form?
i am verrrry new to c#.net
so try not to make it very complicated and i'll get my smart brother forest gump to help me with it.
Code:
<form action="/gdform.php" runat="server" method="post">
<input type="hidden" name="subject" value="Form Submission" />
<input type="hidden" name="redirect" value="Default.aspx" />
<p>First Name:<input type="text" name="FirstName" /></p>
<p>Last Name:<input type="text" name="LastName" /></p>
<p>E-Mail:<input type="text" name="email" /></p>
<p>Comments:<textarea name="comments" cols="40" rows="10">
Type comments here.</textarea></p>
<input type="submit" name="submit" value="submit" id="Submit1" language="javascript" onclick="return Submit1_onclick()"/>
</form>
(form action="/gdform.php" runat="server" method="post)
from javascript or code behind?
my second question is how do i include a captcha and verify it, then send the form?
i am verrrry new to c#.net
so try not to make it very complicated and i'll get my smart brother forest gump to help me with it.
Comment