using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Data.SqlClient;
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 ProjectDll.BINDCLASS;
public partial class ProjectApplication_aspx : System.Web.UI.Page
{
// Page events are wired up automatically to methods
// with the following names:
// Page_Load, Page_AbortTransaction, Page_CommitTransaction,
// Page_DataBinding, Page_Disposed, Page_Error, Page_Init,
// Page_Init Complete, Page_Load, Page_LoadComplete, Page_PreInit
// Page_PreLoad, Page_PreRender, Page_PreRenderComplete,
// Page_SaveStateComplete, Page_Unload
protected void Page_Load(object sender, EventArgs e)
{
///初始化该页面(工程申请)
if (!IsPostBack)
{
/// 绑定该页面所有DropDownList:
//绑定业主名称下拉列表框:(这部分是初始化代码,没有问题)
}
protected void BtnPreviewApplication_Click(object sender, EventArgs e)
{
TxtPhysicalArea.Text = "137";
BtnEditApplication.Visible = true;
BtnAcknowledgementApplication.Visible = true;
BtnPreviewApplication.Visible = false;
}