|
xxx.aspx.cs
public class xxx:...
{
private string Fdw_number;
private void page_load(.............)
{
...
Fdw_number=this.request["dwid"]
...
}
private void btnOK_ServerClick(object sender, System.Web.UI.ImageClickEventArgs e)
{
...
TextBox1.Text=Fdw_number;
...
}
不知为什么Fdw_number的值总不能保持?
|
|