using System;
using System.Data;
using Microsoft.Practices.EnterpriseLibrary.Data;
public partial class GetZipCodeControl : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnSearch_Click(object sender, EventArgs e)
{
this.ctlZipColdeList.DataSource = DatabaseFactory.CreateDatabase(
"ConnectionString").ExecuteReader(CommandType.Text
, "Select * From Zip Where Dong Like '"
+ txtZip.Text + "%'"
);
this.ctlZipColdeList.DataBind();
}
}