473,412 Members | 2,281 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,412 software developers and data experts.

ASP page will not load

I have a 10mb ASP file, which will not load in IE 6.0. I
get an HTTP 500 error. When I convert the 10mb file to
HTML, it loads fine. Is there a limitation on file size?
If so, is there a tag I can place at the top of the page
to override the size limitation?

Thanks.
Jul 19 '05 #1
13 2683
> I have a 10mb ASP file

Uh, what the heck do you need to do that takes 10mb of ASP code???

You're lucky you get a 500 error, and IIS doesn't reach out and smack you.
;-)

--
http://www.aspfaq.com/
(Reverse address to reply.)
Jul 19 '05 #2
teenzbutler wrote:
I have a 10mb ASP file, which will not load in IE 6.0. I
get an HTTP 500 error. When I convert the 10mb file to
HTML, it loads fine. Is there a limitation on file size?
If so, is there a tag I can place at the top of the page
to override the size limitation?

Thanks.


Your first task is to tell us what the real error message is. see here:
http://www.aspfaq.com/show.asp?id=2109

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 19 '05 #3
10MB....??.... wtf have you got in it?

--

Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!
"teenzbutler" <an*******@discussions.microsoft.com> wrote in message
news:9d****************************@phx.gbl...
I have a 10mb ASP file, which will not load in IE 6.0. I
get an HTTP 500 error. When I convert the 10mb file to
HTML, it loads fine. Is there a limitation on file size?
If so, is there a tag I can place at the top of the page
to override the size limitation?

Thanks.

Jul 19 '05 #4
I want to thank you all for your positive feedback LOL...
Let me explain:

1. The President of my company wanted the abiilty to view
his month-end reports while away from the office (8
reports in total). The files are company-sensitive Excel
spreadsheet that were converted to HTML.

2. To protect the material, I created a secure logon
using ASP. To secure the files, I had to convert them to
ASP

3. 7 of the 8 reports are working perfectly. The large
one (10mb), however, is giving me problems.

The true HTTP error is:

HTTP/1.1 500 Server Error

I hope this helps.

-----Original Message-----
10MB....??.... wtf have you got in it?

--

Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!
"teenzbutler" <an*******@discussions.microsoft.com> wrote in messagenews:9d****************************@phx.gbl...
I have a 10mb ASP file, which will not load in IE 6.0. I get an HTTP 500 error. When I convert the 10mb file to
HTML, it loads fine. Is there a limitation on file size? If so, is there a tag I can place at the top of the page
to override the size limitation?

Thanks.

.

Jul 19 '05 #5
teenzbutler wrote:
I want to thank you all for your positive feedback LOL...
Let me explain:

1. The President of my company wanted the abiilty to view
his month-end reports while away from the office (8
reports in total). The files are company-sensitive Excel
spreadsheet that were converted to HTML.

2. To protect the material, I created a secure logon
using ASP. To secure the files, I had to convert them to
ASP

3. 7 of the 8 reports are working perfectly. The large
one (10mb), however, is giving me problems.

The true HTTP error is:

HTTP/1.1 500 Server Error

No it isn't. You did not read the page whose link I posted. Do you not have
internet access? Here, I'll post the text:

Why do I get a 500 Internal Server error for all ASP errors?

http://www.aspfaq.com/2109 created: before August 2000
last updated: 2003-12-24 20:09 this article is printer friendly
You might be finding it difficult to debug ASP errors in a
browser. This is because IE5 has a ridiculous default option that suppresses
errors to a more "friendly" error (which, IMHO, is a lot more cryptic than
what they'd get otherwise). This comes back to the user as a 500.100
Internal Server Error (ASP 0147), and in certain scenarios a 404 Page cannot
be found error, and doesn't leave the user much information to pass on to
the webmaster, except to tell them that "The page cannot be displayed."

To circumvent this silliness and get real ASP errors, go to IE's
Tools/Internet Options menu, and on the advanced tab, uncheck "Show friendly
HTTP error messages."

After you've disabled this default setting, refresh the page in
question. There are four possible outcomes: (1) the page will magically work
again; (2) the page will give you a more detailed error (e.g. Stack Overflow
or Syntax Error), including a line number; (3) you will get "Server
Application Error" - which means that at some point IIS got confused about
the current application; or (4) you will still see non-descript error
messages.

If (3) is what happens, you can remedy this simply by going into
Internet Services Manager. Right-click the application in question (or
Default Web Site, if an application is not relevant), select properties, hit
the "Home Directory" tab, click the "Remove" button, and then click the
"Create" button. Follow with Apply/OK etc and get out of Internet Services
Manager. Refresh your page, and all should be well again.

If (4) is what happens, open Internet Services Manager, go to
the home directory tab of your default web site or application, click on
configuration, go to the Debugging tab, and make sure "Send detailed error
messages to the client" is selected. Click Apply/OK/OK etc. to get out of
there and try your page again.

If you are still getting errors like 'page not found' then go
into Internet Services Manager, right-click Default Web Site, choose
Properties, and on the Home Directory tab, click the Configuration button.
On the App Debugging tab, make sure "Send detailed ASP error messages to
client" is selected.

Page not found errors can also be cause by the IIS Lockdown
wizard. Or, in Windows Server 2003 / IIS 6.0, a misconfigured Application
Server (see Article #2147 for information on configuring your application
server to allow the server to process ASP files).

Finally, check the event log, as occasionally there is more
information there than you will see in the browser. Of course this is even
more likely if you can't change the IIS or browser configurations.

See KB #261200 and KB #311766 for more information.


Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.


Jul 19 '05 #6
> 2. To protect the material, I created a secure logon
using ASP. To secure the files, I had to convert them to
ASP
Why don't you just disable anonymous access, and require him to enter
windows authentication credentials??? Or, don't tell anybody the link?
HTTP/1.1 500 Server Error


No, it's not. Did you go to http://www.aspfaq.com/2109?
Jul 19 '05 #7
Because he doesn't know how to :)

"Aaron [SQL Server MVP]" <te*****@dnartreb.noraa> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
2. To protect the material, I created a secure logon
using ASP. To secure the files, I had to convert them to
ASP


Why don't you just disable anonymous access, and require him to enter
windows authentication credentials??? Or, don't tell anybody the link?
HTTP/1.1 500 Server Error


No, it's not. Did you go to http://www.aspfaq.com/2109?

Jul 19 '05 #8
I already tried basic and digest authentication, but
authentication fails while logged onto my own domain
(i.e., while in the office).

-----Original Message-----
2. To protect the material, I created a secure logon
using ASP. To secure the files, I had to convert them to ASP
Why don't you just disable anonymous access, and require

him to enterwindows authentication credentials??? Or, don't tell anybody the link?
HTTP/1.1 500 Server Error


No, it's not. Did you go to http://www.aspfaq.com/2109?
.

Jul 19 '05 #9
I read the article twice. I changed the setting within IE
and, opened Internet Services Manager and found that the
setting "Send detailed error messages to the client" was
already selected. I tried accessing the page again and
the message I receive is:

HTTP/1.1 500 Server Error (IN BIG BOLD LETTERS)

So, I don't know if there is any more information I can
send.
-----Original Message-----
teenzbutler wrote:
I want to thank you all for your positive feedback LOL... Let me explain:

1. The President of my company wanted the abiilty to view his month-end reports while away from the office (8
reports in total). The files are company-sensitive Excel spreadsheet that were converted to HTML.

2. To protect the material, I created a secure logon
using ASP. To secure the files, I had to convert them to ASP

3. 7 of the 8 reports are working perfectly. The large
one (10mb), however, is giving me problems.

The true HTTP error is:

HTTP/1.1 500 Server Error
No it isn't. You did not read the page whose link I

posted. Do you not haveinternet access? Here, I'll post the text:

Why do I get a 500 Internal Server error for all ASP errors?
http://www.aspfaq.com/2109 created: before August 2000last updated: 2003-12-24 20:09 this article is printer friendly You might be finding it difficult to debug ASP errors in abrowser. This is because IE5 has a ridiculous default option that suppresseserrors to a more "friendly" error (which, IMHO, is a lot more cryptic thanwhat they'd get otherwise). This comes back to the user as a 500.100Internal Server Error (ASP 0147), and in certain scenarios a 404 Page cannotbe found error, and doesn't leave the user much information to pass on tothe webmaster, except to tell them that "The page cannot be displayed."
To circumvent this silliness and get real ASP errors, go to IE'sTools/Internet Options menu, and on the advanced tab, uncheck "Show friendlyHTTP error messages."

After you've disabled this default setting, refresh the page inquestion. There are four possible outcomes: (1) the page will magically workagain; (2) the page will give you a more detailed error (e.g. Stack Overflowor Syntax Error), including a line number; (3) you will get "ServerApplication Error" - which means that at some point IIS got confused aboutthe current application; or (4) you will still see non- descript errormessages.

If (3) is what happens, you can remedy this simply by going intoInternet Services Manager. Right-click the application in question (orDefault Web Site, if an application is not relevant), select properties, hitthe "Home Directory" tab, click the "Remove" button, and then click the"Create" button. Follow with Apply/OK etc and get out of Internet ServicesManager. Refresh your page, and all should be well again.

If (4) is what happens, open Internet Services Manager, go tothe home directory tab of your default web site or application, click onconfiguration, go to the Debugging tab, and make sure "Send detailed errormessages to the client" is selected. Click Apply/OK/OK etc. to get out ofthere and try your page again.

If you are still getting errors like 'page not found' then gointo Internet Services Manager, right-click Default Web Site, chooseProperties, and on the Home Directory tab, click the Configuration button.On the App Debugging tab, make sure "Send detailed ASP error messages toclient" is selected.

Page not found errors can also be cause by the IIS Lockdownwizard. Or, in Windows Server 2003 / IIS 6.0, a misconfigured ApplicationServer (see Article #2147 for information on configuring your applicationserver to allow the server to process ASP files).

Finally, check the event log, as occasionally there is moreinformation there than you will see in the browser. Of course this is evenmore likely if you can't change the IIS or browser configurations.
See KB #261200 and KB #311766 for more information.

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my Fromheader is my spam trap, so I don't check it very often. You will get aquicker response by posting to the newsgroup.

Jul 19 '05 #10
basic and digest??? Do you even know what those are? Did you try WINDOWS
AUTHENTICATION???

--
http://www.aspfaq.com/
(Reverse address to reply.)

"teenzbutler" <an*******@discussions.microsoft.com> wrote in message
news:9b****************************@phx.gbl...
I already tried basic and digest authentication, but
authentication fails while logged onto my own domain
(i.e., while in the office).

-----Original Message-----
2. To protect the material, I created a secure logon
using ASP. To secure the files, I had to convert them to ASP


Why don't you just disable anonymous access, and require

him to enter
windows authentication credentials??? Or, don't tell

anybody the link?
HTTP/1.1 500 Server Error


No, it's not. Did you go to http://www.aspfaq.com/2109?
.

Jul 19 '05 #11
I bet if you send a URL where we can see this, we can show you that you
didn't follow all of the instructions properly by telling you what the error
message really is.

--
http://www.aspfaq.com/
(Reverse address to reply.)


"teenzbutler" <an*******@discussions.microsoft.com> wrote in message
news:9b****************************@phx.gbl...
I read the article twice. I changed the setting within IE
and, opened Internet Services Manager and found that the
setting "Send detailed error messages to the client" was
already selected. I tried accessing the page again and
the message I receive is:

HTTP/1.1 500 Server Error (IN BIG BOLD LETTERS)

So, I don't know if there is any more information I can
send.
-----Original Message-----
teenzbutler wrote:
I want to thank you all for your positive feedback LOL... Let me explain:

1. The President of my company wanted the abiilty to view his month-end reports while away from the office (8
reports in total). The files are company-sensitive Excel spreadsheet that were converted to HTML.

2. To protect the material, I created a secure logon
using ASP. To secure the files, I had to convert them to ASP

3. 7 of the 8 reports are working perfectly. The large
one (10mb), however, is giving me problems.

The true HTTP error is:

HTTP/1.1 500 Server Error

No it isn't. You did not read the page whose link I

posted. Do you not have
internet access? Here, I'll post the text:

Why do I get a 500 Internal Server error for all

ASP errors?

http://www.aspfaq.com/2109 created: before

August 2000
last updated: 2003-12-24 20:09 this article is

printer friendly
You might be finding it difficult to debug

ASP errors in a
browser. This is because IE5 has a ridiculous default

option that suppresses
errors to a more "friendly" error (which, IMHO, is a lot

more cryptic than
what they'd get otherwise). This comes back to the user

as a 500.100
Internal Server Error (ASP 0147), and in certain

scenarios a 404 Page cannot
be found error, and doesn't leave the user much

information to pass on to
the webmaster, except to tell them that "The page cannot

be displayed."

To circumvent this silliness and get real ASP

errors, go to IE's
Tools/Internet Options menu, and on the advanced tab,

uncheck "Show friendly
HTTP error messages."

After you've disabled this default setting,

refresh the page in
question. There are four possible outcomes: (1) the page

will magically work
again; (2) the page will give you a more detailed error

(e.g. Stack Overflow
or Syntax Error), including a line number; (3) you will

get "Server
Application Error" - which means that at some point IIS

got confused about
the current application; or (4) you will still see non-

descript error
messages.

If (3) is what happens, you can remedy this

simply by going into
Internet Services Manager. Right-click the application in

question (or
Default Web Site, if an application is not relevant),

select properties, hit
the "Home Directory" tab, click the "Remove" button, and

then click the
"Create" button. Follow with Apply/OK etc and get out of

Internet Services
Manager. Refresh your page, and all should be well again.

If (4) is what happens, open Internet

Services Manager, go to
the home directory tab of your default web site or

application, click on
configuration, go to the Debugging tab, and make

sure "Send detailed error
messages to the client" is selected. Click Apply/OK/OK

etc. to get out of
there and try your page again.

If you are still getting errors like 'page

not found' then go
into Internet Services Manager, right-click Default Web

Site, choose
Properties, and on the Home Directory tab, click the

Configuration button.
On the App Debugging tab, make sure "Send detailed ASP

error messages to
client" is selected.

Page not found errors can also be cause by

the IIS Lockdown
wizard. Or, in Windows Server 2003 / IIS 6.0, a

misconfigured Application
Server (see Article #2147 for information on configuring

your application
server to allow the server to process ASP files).

Finally, check the event log, as occasionally

there is more
information there than you will see in the browser. Of

course this is even
more likely if you can't change the IIS or browser

configurations.

See KB #261200 and KB #311766 for more

information.


Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed

in my From
header is my spam trap, so I don't check it very often.

You will get a
quicker response by posting to the newsgroup.

Jul 19 '05 #12
"teenzbutler" <an*******@discussions.microsoft.com> wrote in message
news:9b****************************@phx.gbl...
: I already tried basic and digest authentication, but
: authentication fails while logged onto my own domain
: (i.e., while in the office).

butler...

Just leave the xl files in their native format. IE will read them. Set the
authentication to integrated, remove anonymous, which will require your boss
to logon as domain\username and domain password, just as if he were logging
onto the domain in his office, same info. Create a simple HTML file that
links to the files and make sure HIS account has access to the files.
Otherwise, you're probably going to need someone to visit and take care of
this for you.
--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp
Jul 19 '05 #13
On Mon, 2 Aug 2004 14:52:22 -0700, "teenzbutler"
<an*******@discussions.microsoft.com> wrote:
I already tried basic and digest authentication, but
authentication fails while logged onto my own domain
(i.e., while in the office).


See (for starters)

HOW TO: Set Up Anonymous and Basic Authentication on the Same Web
Content in IIS:
http://support.microsoft.com/default...b;en-us;313251

HOW TO: Configure Internet Information Services Web Authentication in
Windows 2000:
http://support.microsoft.com/default...b;en-us;308160

How To View or Change Authentication Methods in IIS:
http://support.microsoft.com/default...b;en-us;301457

How to Create a Password-Protected Web Page by Using Microsoft Office
FrontPage 2003, Active Server Pages (ASP), and a Microsoft Access
database:
http://support.microsoft.com/default...b;en-us;825498

How To Use Simple ASP Code to Password Protect Your ASP Pages:
http://support.microsoft.com/default...b;en-us;301464

Jeff
-----Original Message-----
2. To protect the material, I created a secure logon
using ASP. To secure the files, I had to convert themto ASP


Why don't you just disable anonymous access, and require

him to enter
windows authentication credentials??? Or, don't tell

anybody the link?
HTTP/1.1 500 Server Error


No, it's not. Did you go to http://www.aspfaq.com/2109?
.


Jul 19 '05 #14

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

Similar topics

6
by: user | last post by:
when i first load index.php with arguments ie: "index.php?page=x", the $_SERVERvalue is null. I then get the session id appended to each link. If i refresh the page, I get the $_SERVER I want, but...
5
by: Mike Wasmer | last post by:
Is there an event that signifies the end of a page load?
1
by: WFB | last post by:
Hi, I have a base class from which all of my pages derive (ABCBasePage). For example, ABCCustomerSelect Inherits ABCPasePage. I would now like to have ABCPocketSelect which should inherit from...
6
by: martin | last post by:
Hi, I am a web page and a web user control. My web user control is placed in my web page using the following directive <%@ Register TagPrefix="uc1" TagName="Header"...
2
by: John Lau | last post by:
Hi, Is there documentation that talks about the page lifecycle, the lifecycle of controls on the page, and the rendering of inline code, in a single document? Thanks, John
7
by: Goober | last post by:
I have a page that receives a session variable from the default.aspx. On Page load, the code in Page load gets executed twice. So far, no problem. It sets the session variable each time,...
3
by: Shapper | last post by:
Hello, I am working on an ASP.NET/VB web site. I have several links including menu links. Considerer a want to load a page named page.aspx. I can do it using javascript. Or using this code:...
7
by: UJ | last post by:
I've got a page with a user control on it. While the page is loading, it needs to check certain conditions of the user object to enable/disable things on the screen. Currently in the page_load of...
8
by: MaryA | last post by:
I have an aspx page that loads twice inspite of using the IsPostBack i removed all controls from the page and still the page_load event is called twice I appriciate any help coz i have lost...
3
by: laryten | last post by:
Hi, Is there a way to update the same web page instead of getting a new page each time we click the submit button? The simplest thing to do is to delete the current page (or go back to the...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
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...
0
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...

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.