Thanks Jeremy, The your suggested article made reference to all the sql 2005 and VS 2005 with asp.net
Here is what a debug messages gave when I debug my website application...
//Split out for localization.
var L_GOBACK_TEXT = "Go back to the previous page.";
var L_REFRESH_TEXT = "Refresh the page.";
var L_MOREINFO_TEXT = "More information";
var L_OFFLINE_USERS_TEXT = "For offline users";
var L_RELOAD_TEXT = "Retype the address.";
var L_HIDE_HOTKEYS_TEXT = "Hide tab shortcuts";
var L_SHOW_HOTKEYS_TEXT = "Show more tab shortcuts";
//used by invalidcert.js
var L_CertUnknownCA_TEXT = "The security certificate presented by this website was not issued by a trusted certificate authority.";
var L_CertExpired_TEXT = "The security certificate presented by this website has expired or is not yet valid.";
var L_CertCNMismatch_TEXT = "The security certificate presented by this website was issued for a different website's address.";
var L_CertRevoked_TEXT = "This organization's certificate has been revoked.";
How can I resolve this security certificate issue?
This is the URL that causes my http error 403.
http://localhost:1101/App_Data/Default.aspx
Thanks again,
esmith236
Edward D. Smith
Marked as answer by Esmith236 on Aug 22, 2008 07:11 PM
It would seem that you are accessing a asp.net page in the App_data, this is not good practice move it out and try again.
The App_data folder should only be used for data storage.
Hope it helps
Regards
Jeremy
If this has helped Please: Don't forget to click "Mark as Answer" on the post that helped you.
That way future readers will know which post solved your issue.
Marked as answer by Esmith236 on Aug 22, 2008 07:11 PM
Esmith236
Member
20 Points
49 Posts
Re: Visual Sudio 2008 http error 403
Aug 17, 2008 05:36 PM|LINK
Thanks Jeremy, The your suggested article made reference to all the sql 2005 and VS 2005 with asp.net
Here is what a debug messages gave when I debug my website application...
//Split out for localization.
var L_GOBACK_TEXT = "Go back to the previous page.";
var L_REFRESH_TEXT = "Refresh the page.";
var L_MOREINFO_TEXT = "More information";
var L_OFFLINE_USERS_TEXT = "For offline users";
var L_RELOAD_TEXT = "Retype the address.";
var L_HIDE_HOTKEYS_TEXT = "Hide tab shortcuts";
var L_SHOW_HOTKEYS_TEXT = "Show more tab shortcuts";
//used by invalidcert.js
var L_CertUnknownCA_TEXT = "The security certificate presented by this website was not issued by a trusted certificate authority.";
var L_CertExpired_TEXT = "The security certificate presented by this website has expired or is not yet valid.";
var L_CertCNMismatch_TEXT = "The security certificate presented by this website was issued for a different website's address.";
var L_CertRevoked_TEXT = "This organization's certificate has been revoked.";
How can I resolve this security certificate issue?
This is the URL that causes my http error 403.
http://localhost:1101/App_Data/Default.aspx
Thanks again,
esmith236
jeremyh
Star
8173 Points
1477 Posts
Re: Visual Sudio 2008 http error 403
Aug 17, 2008 06:00 PM|LINK
Hi Edward,
It would seem that you are accessing a asp.net page in the App_data, this is not good practice move it out and try again.
The App_data folder should only be used for data storage.
Hope it helps
Jeremy
If this has helped Please: Don't forget to click "Mark as Answer" on the post that helped you.
That way future readers will know which post solved your issue.
Esmith236
Member
20 Points
49 Posts
Re: Visual Sudio 2008 http error 403
Aug 18, 2008 05:03 PM|LINK
Hi Jeremy,
I took your advice and moved my data file to the app_data folder.
Ran debug and its message told me that "RoleManager was set to "true".
I reset that value to false and ran debug again.
VOILA! no http error 403 and the web page acted much more dignified.
Thanks so much for you and others putting up with a "wet behind the ears" asp.net developer"
All the best
esmith236