 |
| ASP.NET 1.0 and 1.1 Professional For advanced ASP.NET 1.x coders. Beginning-level questions will be redirected to other forums. NOT for "classic" ASP 3 or the newer ASP.NET 2.0 and 3.5 |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 1.0 and 1.1 Professional section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
|
|
|
|

September 18th, 2006, 09:20 AM
|
|
Registered User
|
|
Join Date: Sep 2006
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
ASP.NET 1.1 Problem in Plesk CP
Hi,
I have complied a asp.net 1.1 solution at my local system. If i upload to the server it throws "Server Application Error".
What would be the problem?. I have checked the web apps direcoty permission.All the permissions are given correctly. And one more thing. If i use code behind technique then it throws error. If i use ASPX with website model like <script runat="server>your aspx code</script> method then it works fine. Whats wrong with the code behind technique in hosting?. do i need to some special tunning?
Please reply me asap.
Thanks,
Venkatesh
|
|

September 18th, 2006, 09:54 AM
|
|
Wrox Author
|
|
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
|
|
You are going to have to give me a litte more then "Server Application Error" that could be any of the possible errors that the Compiler could throw!
--Stole this from a moderator
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
|
|

September 18th, 2006, 10:10 AM
|
|
Registered User
|
|
Join Date: Sep 2006
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I cannot able to see any other error messages.
I belive its a web.config compliation option problem. I am looking into that. is that correct?
Venkatesh
Quote:
quote:Originally posted by dparsons
You are going to have to give me a litte more then "Server Application Error" that could be any of the possible errors that the Compiler could throw!
--Stole this from a moderator
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
|
- Venkatesh
|
|

September 18th, 2006, 11:47 AM
|
|
Wrox Author
|
|
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
|
|
in your web.config add
<customErrors mode="Off">
that should display the compiler error.
--Stole this from a moderator
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
|
|

September 18th, 2006, 12:18 PM
|
|
Registered User
|
|
Join Date: Sep 2006
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Already i did. Still have the same issue.
Do i need to add these tags.
<configuration>
<assembiles>
<add assembly="*">
<assembiles>
</configuration>
Will it be a problem?
Venkatesh
Quote:
quote:Originally posted by dparsons
in your web.config add
<customErrors mode="Off">
that should display the compiler error.
--Stole this from a moderator
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
|
- Venkatesh
|
|

September 18th, 2006, 12:49 PM
|
|
Wrox Author
|
|
Join Date: Oct 2005
Posts: 4,104
Thanks: 1
Thanked 64 Times in 64 Posts
|
|
this is, mostly, what my web configs look like:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<customErrors mode="Off"/>
<authentication mode="Windows"/>
<authorization>
<allow users="*"/>
</authorization>
<trace enabled="false" requestLimit="10" pageOutput="false" traceMode="SortByTime" localOnly="true"/>
<globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
<httpRuntime executionTimeout="3800"/>
</system.web>
<appSettings>
</appSettings>
</configuration>
--Stole this from a moderator
I will only tell you how to do it, not do it for you.
Unless, of course, you want to hire me to do work for you.
|
|
 |