Highlight with regular expression : Label « ASP.net Controls « ASP.NET Tutorial

ASP.NET Tutorial
1. ASP.Net Instroduction
2. Language Basics
3. ASP.net Controls
4. HTML Controls
5. Page Lifecycle
6. Response
7. Collections
8. Validation
9. Development
10. File Directory
11. Sessions
12. Cookie
13. Cache
14. Custom Controls
15. Profile
16. Configuration
17. LINQ
18. ADO.net Database
19. Data Binding
20. Ajax
21. Authentication Authorization
22. I18N
23. Mobile
24. WebPart
25. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
ASP.NET Tutorial » ASP.net Controls » Label 
3. 1. 12. Highlight with regular expression
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Highlighting" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
   <title>Sample Search Highlighting</title>
   <style type="text/css">
      .myPanel margin: 8pt; width: 50%; padding 10pt;  }
      body font-family: Tahoma, Arial; font-size: 10pt;}
    </style>
</head>
<body>
   <form id="form1" runat="server">
      <asp:Panel ID="panSearch" runat="server" GroupingText="Search" CssClass="myPanel">
         Enter Search expression:
         <asp:TextBox ID="txtSearch" runat="server"></asp:TextBox><br />
         <asp:Button ID="btnSearch" runat="server" OnClick="btnSearch_Click" Text="Search" />
      </asp:Panel>
      <asp:Panel ID="panContent" runat="server" GroupingText="Content" CssClass="myPanel">
         <asp:Label ID="labContent" runat="server" />
      </asp:Panel>
   </form>
</body>
</html>

File: Default.aspx.cs

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;


using System.Text.RegularExpressions;

public partial class Highlighting : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
       labContent.Text = "Client-side validation is useful because it reduces round-trips to the server. This provides immediate feedback to the user as well as improves server performance. Unfortunately, client-side validation by itself is not sufficient. The user could be using a browser that does not support scripting (that is, using an ancient browser or has scripting turned off via the browser preferences). As well, client-side scripting is potentially vulnerable to script exploits. These can happen when a malicious user enters a javascript &lt;script&gt; block into a text field that can later cause harm when the entered data is echoed back to the browser.";
    }

   protected void btnSearch_Click(object sender, EventArgs e)
   {
      Regex myreg = new Regex(txtSearch.Text, RegexOptions.IgnoreCase);

      labContent.Text = myreg.Replace(labContent.Text, new MatchEvaluator(ReplaceSearchWord));
   }

   public string ReplaceSearchWord(Match m)
   {
      return "<span style='font-weight:bold; background: yellow;'>" + m.Value + "</span>";
   }
}
3. 1. Label
3. 1. 1. Import properties of The Label control
3. 1. 2. Use asp:Label to display text message (VB.net)
3. 1. 3. Change asp:Label Text in page load event listener (VB.net)
3. 1. 4. Add style to asp:Label
3. 1. 5. Label font
3. 1. 6. Set Label through code (VB)
3. 1. 7. Set text to Label (C#)
3. 1. 8. Format a Label with CSS
3. 1. 9. Label controls are used to label the two TextBox controls.
3. 1. 10. Using the Label server control to provide hot-key functionality
3. 1. 11. Label hot key
3. 1. 12. Highlight with regular expression
3. 1. 13. Use of AssociatedControlID property on labels to bind a particular label to an input control
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.