Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / General / December 2007

Tip: Looking for answers? Try searching our database.

adding text to a bound field in a gridview

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
tester - 06 Dec 2007 17:50 GMT
How do I add static text to a bound field in a gridview?  For instance, I
want the following label in a gridview to be displayed as
   "Smith:  Exempt"
   "Jones:  Exempt"
etc.
<asp:Label ID="Label1" runat="server" Text='<%# Bind("LastName")
%>'></asp:Label>
Milosz Skalecki [MCAD] - 06 Dec 2007 19:34 GMT
Hi there,

Two ways:

1. Set DataFormatString property, i.e:
<columns>
<asp:BoundField DataField="LastName" DataFormatString="{0}: Exempt"/>
</columns>

2. Use template field instead:
<columns>
<asp:TemplateField HeaderText="Whatever">
 <ItemTemplate>
   <%# Eval("LastName") %>: Exempt
 </ItemTemplate>
</asp:TemplateField>
</columns>

Hope it helps
Signature

Milosz

> How do I add static text to a bound field in a gridview?  For instance, I
> want the following label in a gridview to be displayed as
[quoted text clipped - 3 lines]
> <asp:Label ID="Label1" runat="server" Text='<%# Bind("LastName")
> %>'></asp:Label>

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.