Prev | Current Page 849 | Next

Rob Cameron and Dale Michalk

"Pro ASP.NET 3.5 Server Controls and AJAX Components"

aspx search query
Listings 13-8 and 13-9 show the web form and the code-behind file, respectively.
CHAPTER 13 ?–  P ACKAGI NG AND DEPLOYMENT 675
Listing 13-8. The CustomLiveSearch.aspx Page File
<%@ Page Language="C#" MasterPageFile="~/MasterPage/ControlsBook2MasterPage.Master"
AutoEventWireup="true" CodeBehind="CustomLiveSearch.aspx.cs"
Inherits="ControlsBook2Web.Ch12.CustomLiveSearch"
Title="Custom live Search Demo" %>
<%@ Register TagPrefix="ApressLive"
Namespace="ControlsBook2Lib.CH12.LiveSearchControls"
Assembly="ControlsBook2Lib.CH12.LiveSearchControls" %>



Width="14px">12  ID="ChapterTitleLabel" runat="server" Width="360px">
Building a Complex Control



Ch12 Custom Live Search


RedirectToLiveSearch="false"
OnLiveSearchSearched="search_LiveSearchSearched"
onlivesearchsearchedeventhandler="search_LiveSearchSearched">





OnItemCreated="Result_ItemCreated"
OnLiveSearchSearched="Result_LiveSearchSearched"
onlivesearchsearchedeventhandler="Result_LiveSearchSearched"
onresultitemeventhandler="Result_ItemCreated" PagerLinkStyle="Text">

837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861