Hi,
I want to read an XML file in my class. To do this I tried the following:
private void readXML()
{
XmlDocument _gridLayout;
XmlNode _gridNode;
try
{
_gridLayout=new XmlDocument();
_gridLayout.Load(// code to be added here
I want to put in the following line to load the XML file.
Request.MapPath(ConfigurationSettings.AppSettings("ColumnLayouts"))
However, I am unable to see "Request" using intellisence, and get the following error when I try to use it:
"The name 'Request' does not exist in the current context "
I though the Request object was core to ASP.NET. Can somebody explain?
Thanks
...
Go to the complete details ...