Heihachi Posted November 8, 2015 Report Posted November 8, 2015 Good morning In PHP we do something like this <?php If(isset($_POST["submit"])){ echo "You clicked me yeh?"; }?>How do you represent this in ASP? Not ASP.NETPlease assist ASAP Quote
Silviu Posted November 8, 2015 Report Posted November 8, 2015 Good morning In PHP we do something like this <?php If(isset($_POST["submit"])){ echo "You clicked me yeh?"; }?>How do you represent this in ASP? Not ASP.NETPlease assist ASAPis there a sort of isset() on .NET/C#? - Stack Overflow Quote
Heihachi Posted November 8, 2015 Author Report Posted November 8, 2015 is there a sort of isset() on .NET/C#? - Stack OverflowMany thanks , obviously i dont mean ASP.net c# i meant classic ASP. Quote
Byte-ul Posted November 8, 2015 Report Posted November 8, 2015 Many thanks , obviously i dont mean ASP.net c# i meant classic ASP.asp classic - How to send and handle Http Post in asp? - Stack Overflow Quote
Heihachi Posted November 8, 2015 Author Report Posted November 8, 2015 asp classic - How to send and handle Http Post in asp? - Stack Overflow<html><head><title>testHome in ASP</title><body><% if Request.Form("submit") ="test" then Response.Write("Ok Mate You Just Clicked Me!")%><form name = "superform" id="superform" method="post" action="idc.asp"><input type="submit" name="submit" value="test"/></form></body></head></html>That's what i tried. And I got a stupid error that didn't show me where I was wrong on IIS Quote