2012년 5월 19일 토요일
..:: Learn » 쇼핑몰 프로젝트 » [4] 상품관리 » 11. 상품 검색 ::..
최소화(Minimize)SearchForm.ascx

<%@ Control Language="C#" AutoEventWireup="true" CodeFile="SearchForm.ascx.cs" Inherits="SearchFormControl" %>
<img src="/website/portals/0/./images/search.gif" alt="상품검색" border="0" style="vertical-align: bottom;" />
검색:
<asp:TextBox ID="txtSearch" runat="server"></asp:TextBox>
<asp:Button ID="btnSearch" runat="server" Text="검색" CausesValidation="False" OnClick="btnSearch_Click">
</asp:Button>

최소화(Minimize)SearchForm.ascx.cs

using System;

public partial class SearchFormControl : System.Web.UI.UserControl
{
    #region Event Handlers
    protected void Page_Load(object sender, System.EventArgs e)
    {
        // Empty
    }

    protected void btnSearch_Click(object sender, System.EventArgs e)
    {
        Response.Redirect(
            String.Format(
                "SearchResults.aspx?txtSearch={0}", this.txtSearch.Text));
    }
    #endregion
}

Copyright 2000-2011 by DotNetKorea all right reserved.   사용약관  개인정보취급방침