Click here to Skip to main content
15,922,007 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Rename FileUpload Control Button (Typical German!!) Pin
frankwiemer-HH18-Nov-08 21:13
frankwiemer-HH18-Nov-08 21:13 
QuestionASP.Net Project deploy into web Pin
scothykonma17-Nov-08 18:32
scothykonma17-Nov-08 18:32 
AnswerRe: ASP.Net Project deploy into web Pin
N a v a n e e t h17-Nov-08 18:47
N a v a n e e t h17-Nov-08 18:47 
GeneralRe: ASP.Net Project deploy into web [modified] Pin
scothykonma17-Nov-08 21:45
scothykonma17-Nov-08 21:45 
AnswerRe: ASP.Net Project deploy into web Pin
Vimalsoft(Pty) Ltd17-Nov-08 20:22
professionalVimalsoft(Pty) Ltd17-Nov-08 20:22 
GeneralRe: ASP.Net Project deploy into web Pin
scothykonma17-Nov-08 21:48
scothykonma17-Nov-08 21:48 
GeneralRe: ASP.Net Project deploy into web Pin
Vimalsoft(Pty) Ltd17-Nov-08 21:54
professionalVimalsoft(Pty) Ltd17-Nov-08 21:54 
GeneralRe: ASP.Net Project deploy into web Pin
scothykonma17-Nov-08 22:00
scothykonma17-Nov-08 22:00 
Hi
I am just entering into ASP.Net web hosting..I developed my project in ASP.Net2.0. I just compiled and copy website into web.
My web.config is,


<?xml version="1.0"?>
<!--
Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in
machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration>
<appSettings/>
<connectionStrings>
<add name="samplecandConnectionString" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|\samplecand.mdb;Persist Security Info=True" providerName="System.Data.OleDb"/>
</connectionStrings>
<system.web>
<!--
Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.

Visual Basic options:
Set strict="true" to disallow all data type conversions
where data loss can occur.
Set explicit="true" to force declaration of all variables.
-->
<compilation debug="true" strict="false" explicit="true"/>
<pages>
<namespaces>
<clear/>
<add namespace="System"/>
<add namespace="System.Collections"/>
<add namespace="System.Collections.Specialized"/>
<add namespace="System.Configuration"/>
<add namespace="System.Text"/>
<add namespace="System.Text.RegularExpressions"/>
<add namespace="System.Web"/>
<add namespace="System.Web.Caching"/>
<add namespace="System.Web.SessionState"/>
<add namespace="System.Web.Security"/>
<add namespace="System.Web.Profile"/>
<add namespace="System.Web.UI"/>
<add namespace="System.Web.UI.WebControls"/>
<add namespace="System.Web.UI.WebControls.WebParts"/>
<add namespace="System.Web.UI.HtmlControls"/>
</namespaces>
</pages>
<!--
The <authentication> section enables configuration
of the security authentication mode used by
ASP.NET to identify an incoming user.
-->
<authentication mode="None"/>
<!--
The <customErrors> section enables configuration
of what to do if/when an unhandled error occurs
during the execution of a request. Specifically,
it enables developers to configure html error pages
to be displayed in place of a error stack trace.
-->
<customErrors mode="Off"/>
</system.web>
</configuration>



When I run this project in web i got the error like this,

Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.

Source Error:

Line 51: ASP.NET to identify an incoming user.
Line 52: -->
Line 53: <authentication mode="None"/>
Line 54: <!--
Line 55: The <customErrors> section enables configuration


Source File: f:\web\...\...\web.config Line: 53
GeneralRe: ASP.Net Project deploy into web Pin
Vimalsoft(Pty) Ltd17-Nov-08 23:08
professionalVimalsoft(Pty) Ltd17-Nov-08 23:08 
GeneralRe: ASP.Net Project deploy into web Pin
scothykonma17-Nov-08 23:55
scothykonma17-Nov-08 23:55 
GeneralRe: ASP.Net Project deploy into web Pin
Vimalsoft(Pty) Ltd18-Nov-08 0:48
professionalVimalsoft(Pty) Ltd18-Nov-08 0:48 
GeneralRe: ASP.Net Project deploy into web Pin
scothykonma18-Nov-08 1:22
scothykonma18-Nov-08 1:22 
GeneralRe: ASP.Net Project deploy into web Pin
surender.m18-Nov-08 1:48
surender.m18-Nov-08 1:48 
GeneralRe: ASP.Net Project deploy into web Pin
surender.m18-Nov-08 1:49
surender.m18-Nov-08 1:49 
GeneralRe: ASP.Net Project deploy into web Pin
Vimalsoft(Pty) Ltd18-Nov-08 7:45
professionalVimalsoft(Pty) Ltd18-Nov-08 7:45 
GeneralRe: ASP.Net Project deploy into web Pin
scothykonma18-Nov-08 17:53
scothykonma18-Nov-08 17:53 
GeneralRe: ASP.Net Project deploy into web Pin
Vimalsoft(Pty) Ltd18-Nov-08 19:13
professionalVimalsoft(Pty) Ltd18-Nov-08 19:13 
GeneralRe: ASP.Net Project deploy into web Pin
scothykonma18-Nov-08 20:31
scothykonma18-Nov-08 20:31 
GeneralRe: ASP.Net Project deploy into web Pin
Vimalsoft(Pty) Ltd18-Nov-08 20:46
professionalVimalsoft(Pty) Ltd18-Nov-08 20:46 
GeneralRe: ASP.Net Project deploy into web Pin
scothykonma18-Nov-08 22:42
scothykonma18-Nov-08 22:42 
GeneralRe: ASP.Net Project deploy into web Pin
Vimalsoft(Pty) Ltd18-Nov-08 22:46
professionalVimalsoft(Pty) Ltd18-Nov-08 22:46 
GeneralRe: ASP.Net Project deploy into web Pin
scothykonma18-Nov-08 23:37
scothykonma18-Nov-08 23:37 
GeneralRe: ASP.Net Project deploy into web Pin
Vimalsoft(Pty) Ltd19-Nov-08 0:31
professionalVimalsoft(Pty) Ltd19-Nov-08 0:31 
AnswerUsing filters in CSS Pin
Member 432247717-Nov-08 18:08
Member 432247717-Nov-08 18:08 
GeneralRe: Using filters in CSS Pin
Christian Graus17-Nov-08 21:10
protectorChristian Graus17-Nov-08 21:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.