<?xml version="1.0" encoding="utf-8"?>
<!--
注意: 除了手动编辑此文件以外,您还可以使用
Web 管理工具来配置应用程序的设置。可以使用 Visual Studio 中的
“网站”->“Asp.Net 配置”选项。
设置和注释的完整列表在
machine.config.comments 中,该文件通常位于
\Windows\Microsoft.Net\Framework\v2.x\Config 中
-->
<configuration>
<appSettings/>
<connectionStrings/>
<system.web>
<!--啟用匿名-->
<anonymousIdentification enabled="true"/>
<!--個性化設置區域-->
<profile>
<properties>
<!--每項都需要激活配置-->
<add name="inputContent" type="System.String" allowAnonymous="true"/>
<add name="inputToolTip" type="System.String" allowAnonymous="true"/>
<add name="MyMode" type="System.Web.UI.WebControls.TextBoxMode" allowAnonymous="true"/>
<add name="MyBank" type="Bank" allowAnonymous="true"/>
</properties>
</profile>
<!--
设置 compilation debug="true" 将调试符号插入
已编译的页面中。但由于这会
影响性能,因此只在开发过程中将此值
设置为 true。
-->
<compilation debug="false" />
<!--
通过 <authentication> 节可以配置 ASP.NET 使用的
安全身份验证模式,
以标识传入的用户。
-->
<authentication mode="Forms" />
<!--
如果在执行请求的过程中出现未处理的错误,
则通过 <customErrors> 节可以配置相应的处理步骤。具体说来,
开发人员通过该节可以配置
要显示的 html 错误页
以代替错误堆栈跟踪。
<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" />
</customErrors>
-->
</system.web>
</configuration>
---------------------------------------------------------------------------------------------------
///代码段:
///保存段
switch (this.ddlTextBoxSet.SelectedValue)
{
case "1":
Profile.MyMode = TextBoxMode.MultiLine;
break;
case "2":
Profile.MyMode = TextBoxMode.Password;
break;
default:
Profile.MyMode = TextBoxMode.SingleLine;
break;
}
if (Profile.MyBank == null)
{
Profile.MyBank = new Bank();
}
Profile.MyBank.BankName = this.txtBankName.Text;
Profile.MyBank.BankPass = this.txtBankPass.Text;
Profile.MyBank.BankMoney = this.txtBankMoney.Text;
///读取段
if (!Bank.isNullOrEmpty(Profile.MyBank))
{
//保存文本框類型
switch (Profile.MyMode)
{
case TextBoxMode.MultiLine:
this.ddlTextBoxSet.SelectedValue = "1";
break;
case TextBoxMode.Password:
this.ddlTextBoxSet.SelectedValue = "2";
break;
default:
this.ddlTextBoxSet.SelectedValue = "0";
break;
}
this.txtBankName.Text = Profile.MyBank.BankName;
this.txtBankPass.Text = Profile.MyBank.BankPass;
this.txtBankMoney.Text = Profile.MyBank.BankMoney;
}
///Bank类
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
/// <summary>
/// Bank 的摘要说明
/// </summary>
public class Bank
{
private string bankName;
public string BankName
{
get { return bankName; }
set { bankName = value; }
}
private string bankPass;
public string BankPass
{
get { return bankPass; }
set { bankPass = value; }
}
private string bankMoney;
public string BankMoney
{
get { return bankMoney; }
set { bankMoney = value; }
}
public Bank()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
public static bool isNullOrEmpty(Bank bank)
{
return bank == null;
}
}