Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
K

kuduva

@kuduva
About
Posts
31
Topics
10
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Online tutorial with examples
    K kuduva

    Send any online tutorial for ASP.NET code behind language as C#

    ASP.NET csharp asp-net tutorial

  • what is publishing in ASP.NET
    K kuduva

    any one please explain how to deploy the web pages in windows server

    ASP.NET csharp asp-net sysadmin windows-admin tutorial

  • Step's to upload the site on web server
    K kuduva

    if i change the content of the web.config file like this

    <configuration>
    <system.web>
    <customErrors mode="Off"/>
    </system.web>
    </configuration>

    its shows error like this

    Server Error in '/' Application.
    Parser Error
    Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

    Parser Error Message: Could not load type '_Default'.

    Source Error:

    Line 1: <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
    Line 2:
    Line 3: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    Source File: f:\inetpub\suntvaus\Default.aspx Line: 1

    Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET Version:1.1.4322.2300

    ASP.NET tutorial csharp asp-net sysadmin

  • Step's to upload the site on web server
    K kuduva

    i logged in to the server and i saw the web.config file i change the RemoteOnly to Off inside tag but same error display

    ASP.NET tutorial csharp asp-net sysadmin

  • Step's to upload the site on web server
    K kuduva

    i cont understand, can pls tell me clearly

    ASP.NET tutorial csharp asp-net sysadmin

  • Step's to upload the site on web server
    K kuduva

    after i change the RemoteOnly to off it shows the same error

    ASP.NET tutorial csharp asp-net sysadmin

  • Step's to upload the site on web server
    K kuduva

    i upload my its show's error like this

    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".

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

    <configuration>
    <system.web>
    <customErrors mode="Off"/>
    </system.web>
    </configuration>

    Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.

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

    <configuration>
    <system.web>
    <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
    </configuration>

    ASP.NET tutorial csharp asp-net sysadmin

  • Step's to upload the site on web server
    K kuduva

    i need to change any code in web.config when i am uploading right now i am uploading the site

    ASP.NET tutorial csharp asp-net sysadmin

  • Step's to upload the site on web server
    K kuduva

    it need any web.config file and bin dir

    ASP.NET tutorial csharp asp-net sysadmin

  • Step's to upload the site on web server
    K kuduva

    there is no need for database in my website. i just publish the site and save that in a folder after that move all the files in web server may i know this is correct way to upload the site in web server

    ASP.NET tutorial csharp asp-net sysadmin

  • Step's to upload the site on web server
    K kuduva

    Hi to all i am new face to asp.net i develop a website in asp.net (language = vb) in .NET 2.0. In my system i run the project. i want to upload the site in a web server. i have web server and domain name. can any tell pls how to upload my site in web server i have change a file content to run in web pls tell me step by step procedure to upload my site

    ASP.NET tutorial csharp asp-net sysadmin

  • when uploading
    K kuduva

    I change that line into off but same error is displaying

    ASP.NET csharp asp-net visual-studio sysadmin xml

  • when uploading
    K kuduva

    This is my error when i uploading the file can you explain me clearly 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". <!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration> Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL. <!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/> </system.web> </configuration>

    ASP.NET csharp asp-net visual-studio sysadmin xml

  • when uploading
    K kuduva

    This my default web.config file when uploading to server i have to change any thing in this file

    <?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>

    <configSections>
      <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
        <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
          <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
          <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
            <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" />
            <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
            <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
            <section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" />
    
    ASP.NET csharp asp-net visual-studio sysadmin xml

  • when i upload my code i got this error
    K kuduva

    Now i am getting this error 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". <!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration> Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL. <!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/> </system.web> </configuration>

    ASP.NET csharp html asp-net dotnet sysadmin

  • when i upload my code i got this error
    K kuduva

    can you pls explain me detailed

    ASP.NET csharp html asp-net dotnet sysadmin

  • when i upload my code i got this error
    K kuduva

    when i upload my code i got this error Server Error in '/' Application. Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: Could not load type '_Default'. Source Error: Line 1: <%@ Page Language="VB" AutoEventWireup="true" CodeFile="Default.aspx.vb" Inherits="_Default" %> Line 2: Line 3: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Source File: f:\inetpub\suntvaus\Default.aspx Line: 1 Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET Version:1.1.4322.2300 any one pls explain this

    ASP.NET csharp html asp-net dotnet sysadmin

  • Feedback Form
    K kuduva

    I designed a user interface for a web form i have 11 text box, 4 dropdown box, and 2 button Button 1 name is submit Button 2 name is Reset Now i any user click the submit button the content what was filled by the user in the text box and dropdown box should mail to a email id in text format this the task what i want to do i am using asp.net and language as VB

    ASP.NET csharp asp-net design beta-testing tools

  • Feedback Form
    K kuduva

    i think that code was in C# but i am using VB script in asp.net i tried that its not working i designed a user interface in as feedback.aspx using language as VB

    ASP.NET csharp asp-net design beta-testing tools

  • Feedback Form
    K kuduva

    I want to create a feed back form in asp.net using VB script anybody pls help how to code that if user click submit button it send a mail to my id i designed the user interface page but i cont able to code to onclick action

    ASP.NET csharp asp-net design beta-testing tools
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups