<%@ Page Language="C#" AutoEventWireup="true" CodeFile="TestTopSearchOnGrid.aspx.cs" Inherits="TestTopSearchOnGrid" %> <%@ Register Assembly="ncToolControls" Namespace="ncToolControls" TagPrefix="nc" %> <!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></title> </head> <body> <form id="form1" runat="server"> <div> <nc:TopGridviewSearch ID="ctrl1" runat="server" /> </div> </form> </body> </html>
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class TestTopSearchOnGrid : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { this.ctrl1.btnFind.Click += new EventHandler(btnSearch_Click); if (!Page.IsPostBack) { //-this.ctrl1.txtSearchBox.CssClass = ""; } } protected void btnSearch_Click(object sender, EventArgs e) { this.ctrl1.btnRefresh.Enabled = true; Response.Write(this.ctrl1.txtSearchBox.Text); } }
Trouble logging in? Simply enter your email address OR username in order to reset your password.
For faster and more reliable delivery, add support@netstaircom.net to your trusted senders list in your email software.