Click here to Skip to main content
16,016,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi Every One
I am upload one .aspx page in server localy it is working but server side not working
i am getting error like dis
can any help dis
-> i placed web.config file is out side folder
-> i used .Net 2.0 framework
Server Error in Application.Runtime Error

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
An application error occurred on the server. The current
custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It >could, however, be viewed by browsers running on the local server >machine.



XML
<!-- Web.Config Configuration File -->

<configuration>>
    <system.web>>
       <customerrors mode="Off" />
    <system.web>
</system.web>
Posted
Comments
R. Giskard Reventlov 7-Jul-11 3:47am    
So have you changed your web.config file as it says you should? Did that get you to see the error?
shefeekcm 7-Jul-11 4:19am    
can you show the aspx and cs file.

please set <system.web> tag correctly and after that show error on page.and then paste error

<configuration>
<system.web>
<customerrors mode="off">
</system.web>
 
Share this answer
 
v3
XML
<configuration>
<system.web>
<customerrors mode="off">
</system.web>



i placed same
like dis but getting same error
 
Share this answer
 
I think some problem occour in your designer.cs page.
open .aspx.designer.aspx check their some control are not updated there.
If not there update it manually .
I think it will work.
 
Share this answer
 
Hi,

Maybe you are accessing the secured remote server to upload files...
Remoting a secured server requires user authentication rather required input
of User Id and Password to validate.

See this link if could help...
How to move uploaded file to a folder on remote server

Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Regards,

Algem
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900