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 7734553
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T07:16:42+00:00 2026-06-01T07:16:42+00:00

I have a text box that will allow the user to enter multiple authors

  • 0

I have a text box that will allow the user to enter multiple authors by separate them with semicolon. Initially the Text Box is one line but after the user type in the first semicolon the text box will change to multiple line.

I’m able to change the text box to multiple line only if I click on “TAB” or “ENTER” keys. Is there any way to do it just by clicking on the semicolon key?


This is the partial front end code:

<!-- Report Author(s) Name(s) -->
            <div class="row">
                <div class="leftSide">
                    <asp:Label ID="LabelAuthorName" runat="server" Text="Author" />
                </div>
                <div class="rightSide">
                    <asp:TextBox ID="TextBoxAuthorName" runat="server" ToolTip="Author1; Author2; ...."
                        OnTextChanged="TextBoxAuthorName_TextChanged" AutoPostBack="True" ></asp:TextBox>
                </div>
            </div>

This is the partial back-end code:

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            TextBoxDocCreaDate.Text = DateTime.Now.ToString("D");
        }

    }

    protected void TextBoxAuthorName_TextChanged(object sender, EventArgs e)
    {
        bool isSemicolonClick = false;
        string context = TextBoxAuthorName.Text;

        if (isSemicolonClick == false)
        {
            for (int i = 0; i < context.Length; i++)
            {
                if (char.Equals(context[i], ';'))
                {
                    isSemicolonClick = true;
                    TextBoxAuthorName.TextMode = TextBoxMode.MultiLine;
                }
            }
        }
    }    
  • 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-06-01T07:16:43+00:00Added an answer on June 1, 2026 at 7:16 am

    You won’t really be able to trap that server-side unless you do a postback after each keystroke. Suggest using a simple JavaScript onkeypress event to check for semi-colons and go from there.

        function checkForSemiColon(e){
        var watchedkey = e.keyCode? e.keyCode : e.charCode
        if(watchedkey = 186).....
        }
    

    Then on your textbox, just call onkeypress=checkForSemiColor(event), if it equals 186 it’s a semi colon.

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

Sidebar

Related Questions

I want to have a small text box with a scroll bar that will
I want to have a text box that the user can type in that
I have received requirements that ask to normalize text box content when the user
I have an ASP.NET user control that contains a text box control and a
I have a text box that is going to be populated with a comma
I have a C# form that has a text box that needs to constantly
The project I am working on has a rich text box that can have
I have a 2GB text file on my linux box that I'm trying to
I have a UI with a search text box and a button that that
I currently have a text box in a program where the user can input

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.