Hi All,I do have this code in Classic ASP .I'm newbie to ASP.NET . Can anyone please let me know how to use this code in ASP.NET (VB or C#)
Thanks
Code:
<%
var url="[URL unfurl="true"]http://xyz/defs.aspx";[/URL]
var xhttp = Server.CreateObject("MSXML2.ServerXMLHTTP");
xhttp.open("POST", url, false, "", "");
xhttp.setRequestHeader("Content-Type" , "application/x-[URL unfurl="true"]www-form-urlencoded");[/URL]
xhttp.send("body="+Body);
Response.write(xhttp.responseText);
%>
Thanks