473,785 Members | 2,801 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Throw System.Unauthor izedAccessExcep tion ?


I want to block access to my ASP.NET 2.0 web page if the time is
between 3:00 and 4:00. I know how to do the date math - is it proper
to throw an UnauthorizedAcc essException at that time? I want to pass
an "access denied" back to the browser but am not sure if that will
work.

Thanks

Jul 2 '08 #1
6 5660
Another idea could be redirecting the user to a custom page showing
access denied message.

/Anoj
[ www.TheTechHub.com ]

On Jul 3, 1:01*am, coconet <coco...@commun ity.nospamwrote :
I want to block access to my ASP.NET 2.0 web page if the time is
between 3:00 and 4:00. I know how to do the date math - is it proper
to throw an UnauthorizedAcc essException at that time? I want to pass
an "access denied" back to the browser but am not sure if that will
work.

Thanks
Jul 3 '08 #2

I don't want to do that because a crawling bot might be hitting the
page too. I want to show unauthorized access early in the HTTP
communication process, low level. Can I do that from within a ASPX
page?


On Wed, 2 Jul 2008 20:51:29 -0700 (PDT), Anoj <su********@gma il.com>
wrote:
>Another idea could be redirecting the user to a custom page showing
access denied message.

/Anoj
[ www.TheTechHub.com ]

On Jul 3, 1:01*am, coconet <coco...@commun ity.nospamwrote :
>I want to block access to my ASP.NET 2.0 web page if the time is
between 3:00 and 4:00. I know how to do the date math - is it proper
to throw an UnauthorizedAcc essException at that time? I want to pass
an "access denied" back to the browser but am not sure if that will
work.

Thanks
Jul 3 '08 #3
I would actually suggest against sending a 403 or some other HTTP
access denied because the crawlers may act adversly. The redirection
is a good idea. The crawlers will not care as long as it is a
temporary redirect, not a permanent one. Try something like this:

Response.Status Code = 302
Response.Status = "302 Moved Temporarily"
Response.AddHea der("Location", "/Unauthorized.as px") ' Note: "/
Unauthorized.as px" is just an example
Response.End()

Hope this helps.

On Jul 3, 10:49*am, coconet <coco...@commun ity.nospamwrote :
I don't want to do that because a crawling bot might be hitting the
page too. I want to show unauthorized access early in the HTTP
communication process, low level. Can I do that from within a ASPX
page?

On Wed, 2 Jul 2008 20:51:29 -0700 (PDT), Anoj <sutradh...@gma il.com>
wrote:
Another idea could be redirecting the user to a custom page showing
access denied message.
/Anoj
[www.TheTechHub.com]
On Jul 3, 1:01*am, coconet <coco...@commun ity.nospamwrote :
I want to block access to my ASP.NET 2.0 web page if the time is
between 3:00 and 4:00. I know how to do the date math - is it proper
to throw an UnauthorizedAcc essException at that time? I want to pass
an "access denied" back to the browser but am not sure if that will
work.
Thanks
Jul 3 '08 #4
"Norm" <ne*****@gmail. comwrote in message
news:ab******** *************** ***********@z32 g2000prh.google groups.com...
I would actually suggest against sending a 403 or some other HTTP
access denied because the crawlers may act adversly. The redirection
is a good idea. The crawlers will not care as long as it is a
temporary redirect, not a permanent one. Try something like this:

Response.Status Code = 302
Response.Status = "302 Moved Temporarily"
Response.AddHea der("Location", "/Unauthorized.as px") ' Note: "/
Unauthorized.as px" is just an example
Response.End()

Surley HTTP Status 401 Unauthorized would be better, along with response.end
(no redirect, the browser will just say unauthorized )
Jul 6 '08 #5

So throwing an UnauthorizedAcc essException is not the same as sending
a 401 in the HTTP Response?
On Sun, 6 Jul 2008 19:18:40 +0100, "Marc " <Rm********@ima rc.co.uk>
wrote:
>"Norm" <ne*****@gmail. comwrote in message
news:ab******* *************** ************@z3 2g2000prh.googl egroups.com...
I would actually suggest against sending a 403 or some other HTTP
access denied because the crawlers may act adversly. The redirection
is a good idea. The crawlers will not care as long as it is a
temporary redirect, not a permanent one. Try something like this:

Response.Statu sCode = 302
Response.Statu s = "302 Moved Temporarily"
Response.AddHe ader("Location" , "/Unauthorized.as px") ' Note: "/
Unauthorized.a spx" is just an example
Response.End ()

Surley HTTP Status 401 Unauthorized would be better, along with response.end
(no redirect, the browser will just say unauthorized )
Jul 7 '08 #6

If /unauthorized.as px does not exist, then body content will be sent
to the browser "page not found" or something. And if it does exist,
body content will still be sent to the browser. Is there a way to make
the client hang in a suspended state forever to keep a bot from ever
getting anything substantial from the server? What do you think of
activating one of the HTTP authentication schemes to put up a logon
box, that would make the bots go away and people too.

On Thu, 3 Jul 2008 12:27:59 -0700 (PDT), Norm <ne*****@gmail. com>
wrote:
>I would actually suggest against sending a 403 or some other HTTP
access denied because the crawlers may act adversly. The redirection
is a good idea. The crawlers will not care as long as it is a
temporary redirect, not a permanent one. Try something like this:

Response.Statu sCode = 302
Response.Statu s = "302 Moved Temporarily"
Response.AddHe ader("Location" , "/Unauthorized.as px") ' Note: "/
Unauthorized.a spx" is just an example
Response.End ()

Hope this helps.

On Jul 3, 10:49*am, coconet <coco...@commun ity.nospamwrote :
>I don't want to do that because a crawling bot might be hitting the
page too. I want to show unauthorized access early in the HTTP
communicatio n process, low level. Can I do that from within a ASPX
page?

On Wed, 2 Jul 2008 20:51:29 -0700 (PDT), Anoj <sutradh...@gma il.com>
wrote:
>Another idea could be redirecting the user to a custom page showing
access denied message.
>/Anoj
[www.TheTechHub.com]
>On Jul 3, 1:01*am, coconet <coco...@commun ity.nospamwrote :
I want to block access to my ASP.NET 2.0 web page if the time is
between 3:00 and 4:00. I know how to do the date math - is it proper
to throw an UnauthorizedAcc essException at that time? I want to pass
an "access denied" back to the browser but am not sure if that will
work.
>Thanks
Jul 7 '08 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
5470
by: Burton Roberts | last post by:
This is also posted in the security newsgroup. Sorry for cross-posting, but I'm desperate. I have a Winforms application in VB.NET with a SQL Server (MSDE) backend. In the root application directory I have an XML file, LicXML.XML which holds licensing info for the app. On one group of machines where the users have restricted privileges, the deserialization of this file trips an error as follows (excuse mispellings from my client):
0
2476
by: Efi | last post by:
Hi, We have a simple 3 tier application which its core application is VC++ 6.0 ATL COM running as a server application in the COM+. An asp pipe is in charge of handling the requests and passes it to the COM for processing. We are now trying to migrate the asp pipe to Asp.Net. When running the above configuration with Asp.Net on IIS 5.0 (W2K) we have no problems but when trying the do it on IIS 6.0 (W2K3) we are getting the following...
7
4803
by: Peter Afonin | last post by:
Hello, I'm using this code to access a network share from an asp.net page: Dim dir As DirectoryInfo = New DirectoryInfo("\\10.0.0.150\FormLib\") Dim files() As FileInfo = dir.GetFiles("*.eps") When I try to do it, I get this error: System.UnauthorizedAccessException: Access to the path
0
1790
by: masago | last post by:
Hi....how are you ?? they can help me to solve this problem ?? Access to the path = "c:\windows\microsoft.net\framework\v1.1.4322\Temporary ASP.NET = Files\reports\06639073\bbab30a7" is denied.=20 Description: An unhandled exception occurred during the execution of the =
0
2331
by: nime | last post by:
I've got a problem. I cannot debug my app. which one contains WebBrowser control. I found a resolution but it's for an ASP related problem. I couldn't find a correct "user" to give permisson then I've added Everyone and refreshed policies (gpupdate /force), restarted VB IDE but still got the problem. What is the "worker process" for VB IDE? CODE:
2
14379
by: job | last post by:
In a sharepoint setup using smartpart to load our user controls using enterprise blocks (data) we are getting some strange errors (logged to the event log). We dont get the error all the time. When we get the error CPU goes 100% We have been through all we can think of, but have not been able to locate the source to the error. Any suggestions?
3
9204
by: BLUE | last post by:
I've created a folder named TestDir in my wwwroot and I've created the associated virtual application from IIS management snap-in. I've given full control to TestDir to: IUSR, ASPNET, Network service, Anonimous access, Everyone, Users, VS Developers I've set write access and low application protection from IIS management snap-in.
1
4605
by: nygiantswin2005 | last post by:
Hi I am trying to resolve this bug that I have in this application. The code is below. It will generate this Exception System.UnauthorizedAccessException: Access to the path is denied. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.__Error.WinIOError() at System.IO.FileInfo.MoveTo(String destFileName)
1
6675
by: JDS | last post by:
I am getting the following error in my application: System.UnauthorizedAccessException was unhandled Message="Access to the port is denied." Source="System" StackTrace: at System.IO.Ports.InternalResources.WinIOError(Int32 errorCode, String str) at System.IO.Ports.SerialStream.Dispose(Boolean disposing) at System.IO.Ports.SerialStream.Finalize()
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10090
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9949
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8971
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7499
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4050
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3645
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2879
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.