Showing posts with label directory. Show all posts
Showing posts with label directory. Show all posts

Thursday, March 29, 2012

Please explain what "Empty path has no directory" means with Server.MapPath

Hello,

I have the following line of code in a script...

litMsg.Text = Server.MapPath("/");

where litMsg is an ASP.Net Literal control. When I try and run this
page, I get the error ...

System.ArgumentException: Empty path has no directory.

Anyone any idea what this means? I have used Server.MapPath many times
before without error, I'm not sure why it suddenly stopped working here.

I'm sure I'm missing something blindingly obvious and would be grateful
if anyone could point it out!! TIA.

--
Alan Silver
(anything added below this line is nothing to do with me)IN case it's of any use to anyone, I found out that the problem was
caused by me having the following two lines in Page_Load...

HttpContext myContext = HttpContext.Current;
myContext.RewritePath("/");

I'm not actually sure *why* I had those lines there, they must have been
from something I was doing before. As soon as I removed them, the
Server.MapPath worked fine.

If anyone has an explanation, I would like to hear it ;-)

>Hello,
>I have the following line of code in a script...
>litMsg.Text = Server.MapPath("/");
>where litMsg is an ASP.Net Literal control. When I try and run this
>page, I get the error ...
>System.ArgumentException: Empty path has no directory.
>Anyone any idea what this means? I have used Server.MapPath many times
>before without error, I'm not sure why it suddenly stopped working here.
>I'm sure I'm missing something blindingly obvious and would be grateful
>if anyone could point it out!! TIA.

--
Alan Silver
(anything added below this line is nothing to do with me)

Monday, March 26, 2012

Please help - weird problem

Hi,
While trying to create new directory i recieve the following error
message:
"System.IO.DirectoryNotFoundException: Could not find a part of the path
"\\premfs16\sites".
The path exists, even when i check the path
with the code: Directory.Exists(...) the result is true.

Here is the code:
http://www.adeo.co.il/test.aspx

Notice that in the line before the code throws exception
i create new file to the same path and no error
occurs - only when trying to create directory
the error appears.

Any idea?Yoni,

This is a security problem. You need to grant read permission for
\\premfs16\sites to the ASP.NET user.

Eliyahu

"?? ???" <@.discussions.microsoft.com> wrote in message
news:B997041C-220A-4ADC-9528-65BC289CED2F@.microsoft.com...
> Hi,
> While trying to create new directory i recieve the following error
> message:
> "System.IO.DirectoryNotFoundException: Could not find a part of the path
> "\\premfs16\sites".
> The path exists, even when i check the path
> with the code: Directory.Exists(...) the result is true.
> Here is the code:
> http://www.adeo.co.il/test.aspx
> Notice that in the line before the code throws exception
> i create new file to the same path and no error
> occurs - only when trying to create directory
> the error appears.
> Any idea?
So how do you explain that the code succeeded creating
a file (which needs to read the same path...) and only
creating a directory failed?

"Eliyahu Goldin" wrote:

> Yoni,
> This is a security problem. You need to grant read permission for
> \\premfs16\sites to the ASP.NET user.
> Eliyahu
> "?? ???" <@.discussions.microsoft.com> wrote in message
> news:B997041C-220A-4ADC-9528-65BC289CED2F@.microsoft.com...
> > Hi,
> > While trying to create new directory i recieve the following error
> > message:
> > "System.IO.DirectoryNotFoundException: Could not find a part of the path
> > "\\premfs16\sites".
> > The path exists, even when i check the path
> > with the code: Directory.Exists(...) the result is true.
> > Here is the code:
> > http://www.adeo.co.il/test.aspx
> > Notice that in the line before the code throws exception
> > i create new file to the same path and no error
> > occurs - only when trying to create directory
> > the error appears.
> > Any idea?
>
Yoni,

Probably file creating doesn't require read permission but directory
creating does. I don't know exactly how all these permissions work.

Security and permission setting is a complicated matter. You don't really
need to understand fully the theoretical background. For your immediate
problem it's enough to know how other people solved the same problem. If you
wish to investigate - you are welcome to invest your time in that.

Eliyahu

"?? ???" <@.discussions.microsoft.com> wrote in message
news:6EA67417-C3C4-4B5E-9084-DDC2EBB3DC76@.microsoft.com...
> So how do you explain that the code succeeded creating
> a file (which needs to read the same path...) and only
> creating a directory failed?
> "Eliyahu Goldin" wrote:
> > Yoni,
> > This is a security problem. You need to grant read permission for
> > \\premfs16\sites to the ASP.NET user.
> > Eliyahu
> > "?? ???" <@.discussions.microsoft.com> wrote in message
> > news:B997041C-220A-4ADC-9528-65BC289CED2F@.microsoft.com...
> > > Hi,
> > > While trying to create new directory i recieve the following error
> > > message:
> > > "System.IO.DirectoryNotFoundException: Could not find a part of the
path
> > > "\\premfs16\sites".
> > > The path exists, even when i check the path
> > > with the code: Directory.Exists(...) the result is true.
> > > > Here is the code:
> > > http://www.adeo.co.il/test.aspx
> > > > Notice that in the line before the code throws exception
> > > i create new file to the same path and no error
> > > occurs - only when trying to create directory
> > > the error appears.
> > > > Any idea?
>
The problem is much more sophisticated.
My web site host at shared hosting company.
No hosting company will allow users to have read
permissions on their root directory.
So what you are actually saying is that you can not
open directories on web sites which hosts on shared servers.
Is that correct?

"Eliyahu Goldin" wrote:

> Yoni,
> Probably file creating doesn't require read permission but directory
> creating does. I don't know exactly how all these permissions work.
> Security and permission setting is a complicated matter. You don't really
> need to understand fully the theoretical background. For your immediate
> problem it's enough to know how other people solved the same problem. If you
> wish to investigate - you are welcome to invest your time in that.
> Eliyahu
> "?? ???" <@.discussions.microsoft.com> wrote in message
> news:6EA67417-C3C4-4B5E-9084-DDC2EBB3DC76@.microsoft.com...
> > So how do you explain that the code succeeded creating
> > a file (which needs to read the same path...) and only
> > creating a directory failed?
> > "Eliyahu Goldin" wrote:
> > > Yoni,
> > > > This is a security problem. You need to grant read permission for
> > > \\premfs16\sites to the ASP.NET user.
> > > > Eliyahu
> > > > "?? ???" <@.discussions.microsoft.com> wrote in message
> > > news:B997041C-220A-4ADC-9528-65BC289CED2F@.microsoft.com...
> > > > Hi,
> > > > While trying to create new directory i recieve the following error
> > > > message:
> > > > "System.IO.DirectoryNotFoundException: Could not find a part of the
> path
> > > > "\\premfs16\sites".
> > > > The path exists, even when i check the path
> > > > with the code: Directory.Exists(...) the result is true.
> > > > > > Here is the code:
> > > > http://www.adeo.co.il/test.aspx
> > > > > > Notice that in the line before the code throws exception
> > > > i create new file to the same path and no error
> > > > occurs - only when trying to create directory
> > > > the error appears.
> > > > > > Any idea?
> > > > > >
Well, I don't think you need read permissions for the root directory, only
for those under yours. Speak to your host and ask again on security
newsgroups.

Good luck,

Eliyahu

"?? ???" <@.discussions.microsoft.com> wrote in message
news:064E4D9D-5536-4DFD-A83D-6B9957ED5BFE@.microsoft.com...
> The problem is much more sophisticated.
> My web site host at shared hosting company.
> No hosting company will allow users to have read
> permissions on their root directory.
> So what you are actually saying is that you can not
> open directories on web sites which hosts on shared servers.
> Is that correct?
> "Eliyahu Goldin" wrote:
> > Yoni,
> > Probably file creating doesn't require read permission but directory
> > creating does. I don't know exactly how all these permissions work.
> > Security and permission setting is a complicated matter. You don't
really
> > need to understand fully the theoretical background. For your immediate
> > problem it's enough to know how other people solved the same problem. If
you
> > wish to investigate - you are welcome to invest your time in that.
> > Eliyahu
> > "?? ???" <@.discussions.microsoft.com> wrote in message
> > news:6EA67417-C3C4-4B5E-9084-DDC2EBB3DC76@.microsoft.com...
> > > So how do you explain that the code succeeded creating
> > > a file (which needs to read the same path...) and only
> > > creating a directory failed?
> > > > "Eliyahu Goldin" wrote:
> > > > > Yoni,
> > > > > > This is a security problem. You need to grant read permission for
> > > > \\premfs16\sites to the ASP.NET user.
> > > > > > Eliyahu
> > > > > > "?? ???" <@.discussions.microsoft.com> wrote in message
> > > > news:B997041C-220A-4ADC-9528-65BC289CED2F@.microsoft.com...
> > > > > Hi,
> > > > > While trying to create new directory i recieve the following error
> > > > > message:
> > > > > "System.IO.DirectoryNotFoundException: Could not find a part of
the
> > path
> > > > > "\\premfs16\sites".
> > > > > The path exists, even when i check the path
> > > > > with the code: Directory.Exists(...) the result is true.
> > > > > > > > Here is the code:
> > > > > http://www.adeo.co.il/test.aspx
> > > > > > > > Notice that in the line before the code throws exception
> > > > > i create new file to the same path and no error
> > > > > occurs - only when trying to create directory
> > > > > the error appears.
> > > > > > > > Any idea?
> > > > > > > > >

Please help - weird problem

Hi,
While trying to create new directory i recieve the following error
message:
"System.IO.DirectoryNotFoundException: Could not find a part of the path
"\\premfs16\sites".
The path exists, even when i check the path
with the code: Directory.Exists(...) the result is true.
Here is the code:
http://www.adeo.co.il/test.aspx
Notice that in the line before the code throws exception
i create new file to the same path and no error
occurs - only when trying to create directory
the error appears.
Any idea?Yoni,
This is a security problem. You need to grant read permission for
\\premfs16\sites to the ASP.NET user.
Eliyahu
"' '?" <@.discussions.microsoft.com> wrote in message
news:B997041C-220A-4ADC-9528-65BC289CED2F@.microsoft.com...
> Hi,
> While trying to create new directory i recieve the following error
> message:
> "System.IO.DirectoryNotFoundException: Could not find a part of the path
> "\\premfs16\sites".
> The path exists, even when i check the path
> with the code: Directory.Exists(...) the result is true.
> Here is the code:
> http://www.adeo.co.il/test.aspx
> Notice that in the line before the code throws exception
> i create new file to the same path and no error
> occurs - only when trying to create directory
> the error appears.
> Any idea?
>
So how do you explain that the code succeeded creating
a file (which needs to read the same path...) and only
creating a directory failed?
"Eliyahu Goldin" wrote:

> Yoni,
> This is a security problem. You need to grant read permission for
> \\premfs16\sites to the ASP.NET user.
> Eliyahu
> "' '?" <@.discussions.microsoft.com> wrote in message
> news:B997041C-220A-4ADC-9528-65BC289CED2F@.microsoft.com...
>
>
Yoni,
Probably file creating doesn't require read permission but directory
creating does. I don't know exactly how all these permissions work.
Security and permission setting is a complicated matter. You don't really
need to understand fully the theoretical background. For your immediate
problem it's enough to know how other people solved the same problem. If you
wish to investigate - you are welcome to invest your time in that.
Eliyahu
"' '?" <@.discussions.microsoft.com> wrote in message
news:6EA67417-C3C4-4B5E-9084-DDC2EBB3DC76@.microsoft.com...
> So how do you explain that the code succeeded creating
> a file (which needs to read the same path...) and only
> creating a directory failed?
> "Eliyahu Goldin" wrote:
>
path
The problem is much more sophisticated.
My web site host at shared hosting company.
No hosting company will allow users to have read
permissions on their root directory.
So what you are actually saying is that you can not
open directories on web sites which hosts on shared servers.
Is that correct?
"Eliyahu Goldin" wrote:

> Yoni,
> Probably file creating doesn't require read permission but directory
> creating does. I don't know exactly how all these permissions work.
> Security and permission setting is a complicated matter. You don't really
> need to understand fully the theoretical background. For your immediate
> problem it's enough to know how other people solved the same problem. If y
ou
> wish to investigate - you are welcome to invest your time in that.
> Eliyahu
> "' '?" <@.discussions.microsoft.com> wrote in message
> news:6EA67417-C3C4-4B5E-9084-DDC2EBB3DC76@.microsoft.com...
> path
>
>
Well, I don't think you need read permissions for the root directory, only
for those under yours. Speak to your host and ask again on security
newsgroups.
Good luck,
Eliyahu
"' '?" <@.discussions.microsoft.com> wrote in message
news:064E4D9D-5536-4DFD-A83D-6B9957ED5BFE@.microsoft.com...
> The problem is much more sophisticated.
> My web site host at shared hosting company.
> No hosting company will allow users to have read
> permissions on their root directory.
> So what you are actually saying is that you can not
> open directories on web sites which hosts on shared servers.
> Is that correct?
> "Eliyahu Goldin" wrote:
>
really
you
the

Saturday, March 24, 2012

Please help a newbie...

I cannot for the life of me figure out why I cannot run an ASP.NET app. Everytime I try to view in browser/debug I get the error:

maps to a directory outside this application, which is not supported.

I am using Visual Studio 2003. Could someone please enlighten me on what is going wrong here. I am a newbie so if the solution is simple please forgive my ignorance...thanksI have never heard of this error, and it isn't documented in MSDN. My guess is there is a mis-configuration in IIS. Sorry I can't be more specific.
Can you show sources for the page you are trying to view? Especially parts referring to elsewhere (like trying to reference user control etc)

Maybe you can have a look at the following post:

App_GlobalResources maps to a directory outside this application, which is not supported

Hope this helps,

Regards


thanks for posting that link...that is exactly what the problem was. I had a "\" at the end of the file path for the home directory...

thanks again, you saved me

That is so coolBig Smile [:D]

I am happy you solved your problem.

Regards

Wednesday, March 21, 2012

Please help in understanding error

Hi,

I have just deployed my private assembly in the bin directory of my ISP and
I am getting the following error. I am pretty sure it is able to find my
assemblyPLEASE tell me how can I find which dependencies are not being
found( is there a way to trace the dependencies which are not found).
I Just have ftp access to my isp server.

Thanks you in advance,
Peace,
Raj.

Server Error in '/' Application.
-----------------------
--

Configuration Error
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: File or assembly name dotnetOTLicLib, or one of its
dependencies, was not found.

Source Error:

Line 256: <add assembly="System.EnterpriseServices,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 257: <add assembly="System.Web.Mobile,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 258: <add assembly="*"/>
Line 259: </assemblies>
Line 260:

Source File:
c:\winnt\microsoft.net\framework\v1.1.4322\Config\ machine.config Line:
258

Assembly Load Trace: The following information can be helpful to determine
why the assembly 'dotnetOTLicLib' could not be loaded.

=== Pre-bind state information ===
LOG: DisplayName = dotnetOTLicLib
(Partial)
LOG: Appbase = file:///d:/users/lexro/html
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===

LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: dotnetOTLicLib
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/root/51973f4f/48d9daf8/dotnetOTLicLib.DLL.
LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework
/v1.1.4322/Temporary ASP.NET
Files/root/51973f4f/48d9daf8/dotnetOTLicLib/dotnetOTLicLib.DLL.
LOG: Attempting download of new URL
file:///d:/users/lexro/html/bin/dotnetOTLicLib.DLL.
LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: dotnetOTLicLib, Version=1.0.1738.21203,
Culture=neutral, PublicKeyToken=null

-----------------------
--
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032its a file your isp is requiring. probably they do not allow private bins.
check you isp agreement on deploying .net assemblies

-- bruce (sqlwork.com)

"news" <asdfa@.sadf.com> wrote in message
news:39ydnU19ydol4vzcRVn-hg@.rogers.com...
> Hi,
> I have just deployed my private assembly in the bin directory of my ISP
and
> I am getting the following error. I am pretty sure it is able to find my
> assemblyPLEASE tell me how can I find which dependencies are not being
> found( is there a way to trace the dependencies which are not found).
> I Just have ftp access to my isp server.
> Thanks you in advance,
> Peace,
> Raj.
>
> Server Error in '/' Application.
> -----------------------
--
> --
> Configuration Error
> Description: An error occurred during the processing of a configuration
file
> required to service this request. Please review the specific error details
> below and modify your configuration file appropriately.
> Parser Error Message: File or assembly name dotnetOTLicLib, or one of its
> dependencies, was not found.
> Source Error:
> Line 256: <add assembly="System.EnterpriseServices,
> Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
> Line 257: <add assembly="System.Web.Mobile,
> Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
> Line 258: <add assembly="*"/>
> Line 259: </assemblies>
> Line 260:
> Source File:
> c:\winnt\microsoft.net\framework\v1.1.4322\Config\ machine.config Line:
> 258
> Assembly Load Trace: The following information can be helpful to determine
> why the assembly 'dotnetOTLicLib' could not be loaded.
> === Pre-bind state information ===
> LOG: DisplayName = dotnetOTLicLib
> (Partial)
> LOG: Appbase = file:///d:/users/lexro/html
> LOG: Initial PrivatePath = bin
> Calling assembly : (Unknown).
> ===
> LOG: Policy not being applied to reference at this time (private, custom,
> partial, or location-based assembly bind).
> LOG: Post-policy reference: dotnetOTLicLib
> LOG: Attempting download of new URL
> file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
> Files/root/51973f4f/48d9daf8/dotnetOTLicLib.DLL.
> LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework
> /v1.1.4322/Temporary ASP.NET
> Files/root/51973f4f/48d9daf8/dotnetOTLicLib/dotnetOTLicLib.DLL.
> LOG: Attempting download of new URL
> file:///d:/users/lexro/html/bin/dotnetOTLicLib.DLL.
> LOG: Policy not being applied to reference at this time (private, custom,
> partial, or location-based assembly bind).
> LOG: Post-policy reference: dotnetOTLicLib, Version=1.0.1738.21203,
> Culture=neutral, PublicKeyToken=null
>
> -----------------------
--
> --
> Version Information: Microsoft .NET Framework Version:1.1.4322.2032;
ASP.NET
> Version:1.1.4322.2032

Please help in understanding error

Hi,
I have just deployed my private assembly in the bin directory of my ISP and
I am getting the following error. I am pretty sure it is able to find my
assemblyPLEASE tell me how can I find which dependencies are not being
found( is there a way to trace the dependencies which are not found).
I Just have ftp access to my isp server.
Thanks you in advance,
Peace,
Raj.
Server Error in '/' Application.
----
--
Configuration Error
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.
Parser Error Message: File or assembly name dotnetOTLicLib, or one of its
dependencies, was not found.
Source Error:
Line 256: <add assembly="System.EnterpriseServices,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 257: <add assembly="System.Web.Mobile,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 258: <add assembly="*"/>
Line 259: </assemblies>
Line 260:
Source File:
c:\winnt\microsoft.net\framework\v1.1.4322\Config\machine.config Line:
258
Assembly Load Trace: The following information can be helpful to determine
why the assembly 'dotnetOTLicLib' could not be loaded.
=== Pre-bind state information ===
LOG: DisplayName = dotnetOTLicLib
(Partial)
LOG: Appbase = file:///d:/users/lexro/html
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===
LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: dotnetOTLicLib
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/root/51973f4f/48d9daf8/dotnetOTLicLib.DLL.
LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework
/v1.1.4322/Temporary ASP.NET
Files/root/51973f4f/48d9daf8/dotnetOTLicLib/dotnetOTLicLib.DLL.
LOG: Attempting download of new URL
file:///d:/users/lexro/html/bin/dotnetOTLicLib.DLL.
LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: dotnetOTLicLib, Version=1.0.1738.21203,
Culture=neutral, PublicKeyToken=null
----
--
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET
Version:1.1.4322.2032its a file your isp is requiring. probably they do not allow private bins.
check you isp agreement on deploying .net assemblies
-- bruce (sqlwork.com)
"news" <asdfa@.f.com> wrote in message
news:39ydnU19ydol4vzcRVn-hg@.rogers.com...
> Hi,
> I have just deployed my private assembly in the bin directory of my ISP
and
> I am getting the following error. I am pretty sure it is able to find my
> assemblyPLEASE tell me how can I find which dependencies are not being
> found( is there a way to trace the dependencies which are not found).
> I Just have ftp access to my isp server.
> Thanks you in advance,
> Peace,
> Raj.
>
> Server Error in '/' Application.
> ----
--
> --
> Configuration Error
> Description: An error occurred during the processing of a configuration
file
> required to service this request. Please review the specific error details
> below and modify your configuration file appropriately.
> Parser Error Message: File or assembly name dotnetOTLicLib, or one of its
> dependencies, was not found.
> Source Error:
> Line 256: <add assembly="System.EnterpriseServices,
> Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
> Line 257: <add assembly="System.Web.Mobile,
> Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
> Line 258: <add assembly="*"/>
> Line 259: </assemblies>
> Line 260:
> Source File:
> c:\winnt\microsoft.net\framework\v1.1.4322\Config\machine.config Line:
> 258
> Assembly Load Trace: The following information can be helpful to determine
> why the assembly 'dotnetOTLicLib' could not be loaded.
> === Pre-bind state information ===
> LOG: DisplayName = dotnetOTLicLib
> (Partial)
> LOG: Appbase = file:///d:/users/lexro/html
> LOG: Initial PrivatePath = bin
> Calling assembly : (Unknown).
> ===
> LOG: Policy not being applied to reference at this time (private, custom,
> partial, or location-based assembly bind).
> LOG: Post-policy reference: dotnetOTLicLib
> LOG: Attempting download of new URL
> file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
> Files/root/51973f4f/48d9daf8/dotnetOTLicLib.DLL.
> LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework
> /v1.1.4322/Temporary ASP.NET
> Files/root/51973f4f/48d9daf8/dotnetOTLicLib/dotnetOTLicLib.DLL.
> LOG: Attempting download of new URL
> file:///d:/users/lexro/html/bin/dotnetOTLicLib.DLL.
> LOG: Policy not being applied to reference at this time (private, custom,
> partial, or location-based assembly bind).
> LOG: Post-policy reference: dotnetOTLicLib, Version=1.0.1738.21203,
> Culture=neutral, PublicKeyToken=null
>
> ----
--
> --
> Version Information: Microsoft .NET Framework Version:1.1.4322.2032;
ASP.NET
> Version:1.1.4322.2032
>