can any body convert the following code into C#. i have to use same code in my ASP.NET page.
<% Language=VBScript %>
<%
Response.CharSet = "utf-8"
session.CodePage = 65001
' Indicates the location where the HTTP request is to be sent.
Dim requestLocation
requestLocation =
http://localhost/ABC.xyz
' Create an XML object
Set objXMLdoc = Server.CreateObject ("Microsoft.XMLDOM")
objXMLdoc.async = False
objXMLdoc.validateonParse = False
objXMLdoc.preserveWhiteSpace = False
objXMLdoc.resolveExternals = False
Dim xmlHttp
Set xmlHttp = Server.CreateObject("Microsoft.XMLHTTP")
objXMLdoc.LoadXML(Request("XMLData"))
xmlHttp.open "POST", requestLocation, False
xmlHttp.send objXMLdoc.xml
Dim inputXMLDoc
Dim returnValue
set inputXMLDoc = Server.CreateObject("Microsoft.XMLDOM")
returnValue = inputXMLDoc.LoadXML(xmlHttp.ResponseText)
Thanks in advance