Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7398005
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T03:49:04+00:00 2026-05-29T03:49:04+00:00

I have a simple page per below: Default.aspx <%@ Page Language=C# AutoEventWireup=true CodeFile=Default.aspx.cs Inherits=_Default

  • 0

I have a simple page per below:

Default.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<html>
<body>

<form method="POST" action="Default.aspx">

Enter Number: <input type="text" name="cNum" value="7707744436276244" /><br />
<input type="submit" value="Submit" />
</form>


</body>
</html>

and code behind Default.aspx.cs

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page
{
    public string ServerSideVariable;


    protected void Page_Load(object sender, EventArgs e)
    {
       string n = String.Format("{0}", Request.Form['cNum']); ERROR Here<--- too many character in character literall....

        string pval = "Passed value";
        ServerSideVariable = pval;

    }
}

why the error occuring?

Also i’m planning to implement in code behind to make connectivity with DB and return the response back to ASP.net, any one know how is this done?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T03:49:05+00:00Added an answer on May 29, 2026 at 3:49 am

    In C# the ' is reserved for character literal.
    The " is reserved for string literal.

    char char1 = 'Z';        // Character literal
    string string1 = "ZZZ";  // String literal
    

    C# References:

    • Character literals
    • String literals
    • [] Operator

    Try the following:

    using System;
    using System.Collections.Generic;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    
    public partial class _Default : System.Web.UI.Page
    {
        public string ServerSideVariable;
    
    
        protected void Page_Load(object sender, EventArgs e)
        {
           string n = String.Format("{0}", Request.Form["cNum"]); //ERROR Here<--- too many character in character literall....
    
            string pval = "Passed value";
            ServerSideVariable = pval;
    
        }
    }
    

    As for you second question, please read http://www.oracle.com/technetwork/issue-archive/2011/11-sep/o51odt-453447.html.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this simple Jsp page: <%@ page language=java import=java.awt.Color%> <% Color background =
I have a simple html page with a div. I am using jQuery to
I have a simple page with my ScriptManager and my UpdatePanel , and my
I have a simple page with images, and when the user clicks the image,
I am simply learing Ajax with jQuery and have a simple page method that
K... I'm doing something obviously wrong. I have a simple page with a file
I have a simple web page that till now didn't need any login. It
I have a simple cart page that displays items that are in someones cart,
I have a very simple page with which a user uploads a file. Using
I have a simple django page that has a counter on it. I use

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.