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

Related Questions

I want to display only children categories of a particular category. Suppose I have
I am using hibernate and i want to display only those records of table
I have two tables and I want to display only the child ID that
I have a table for which I want to display only the first row
Below is my code snippet , I want to display only 10 records from
I want to display Hello World with calibri.ttf using only AC3. How would I
I have a partial that I want to display in a layout only when
I have some text/images that I only want to display in the normal state
I have a problem regarding a query where i want to only display data
Currently i am getting 100 Records from my Servlet . I want to display

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.