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

  • SEARCH
  • Home
  • 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 245697
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T21:06:37+00:00 2026-05-11T21:06:37+00:00

I want to display only 100 characters at Gridviews ItemTemplate. When I click edit

  • 0

I want to display only 100 characters at Gridviews ItemTemplate. When I click edit button I want to display all binded value with EditItemTemplate.

<ItemTemplate>

<asp:Label ID="Label2" runat="server" Text='<%# Bind("Address") %>'> </asp:Label>

</ItemTemplate>

How can I limit label text 100 characters ?

  • 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-11T21:06:38+00:00Added an answer on May 11, 2026 at 9:06 pm

    Since you are working in the ItemTemplate you don’t really need to use Bind(). You can use Eval() instead and make something like:

    <%# Eval("Address").ToString().Substring(0, 100) %>
    

    There are two problems with such a simple solution:

    The first is when the address field is null, you have to make a check of that. The second is if the string is shorter than 100 characters it will also fail since .NETs Substring() tries to ensure that you always get exactly 100 characters and throws an exception if the string is shorter. So you should add code to make sure that you really need to cut the string.

    And by now it feels like maybe we should make a little helper method instead:

    public static class Extensions
    {
        public static String Limit(this String s, int length)
        {
            if (s == null)
                return String.Empty;
    
            return s.Substring(0, Math.Min(s.Length, length));
        }
    }
    

    Then the Eval statement will look like:

    <%# ((string)Eval("Address")).Limit(100) %>
    

    (This assumes that Address really is a string)

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

Sidebar

Ask A Question

Stats

  • Questions 127k
  • Answers 127k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Is there any reason you want to invoke the binary… May 12, 2026 at 5:35 am
  • Editorial Team
    Editorial Team added an answer To accomplish this, you will need to call the lightbox… May 12, 2026 at 5:35 am
  • Editorial Team
    Editorial Team added an answer XSD only supports URI locations, not path location. This means… May 12, 2026 at 5:35 am

Related Questions

I want my program to display the unix windmill while processing. There's a for
I am using Eclipse for quite some time and I still haven't found how
I want to display the duration only Hour, Minutes, and Second in data Gridview
In an HTML window, I am setting a custom body <img src=file://[filename]> to display

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.