用户登录界面中要求用户必须填写用户名和密码,才能提交,应使用( RequiredFieldValidator)控件。
现有一课程成绩输入框,成绩范围为0~100,这里最好使用(RangeValidator)验证控件。
如果需要确保用户输入大于30的值,应该使用(CompareValidator )验证控件。
下面对CustomValidator控件说法正确的是(ABC)。
A. 控件允许用户根据程序设计需要自定义控件的验证方法
B. 控件可以添加客户端验证方法和服务器端验证方法
C.ClientValidationFunction属性指定客户端验证方法
验证控件的 ControlToValidate 属性指定要验证的输入控件。
在使用RangeValidator控件或CompareValidator控件时,如果相应的输入框中没有输入内容,验证是否能够得到通过?--------是
( 连接对象)是开发人员要使用的第一个对象,被要求用于任何其他ADO.NET对象之前。
使用本地计算机上SQLEXPRESS实例为ASP.NET Web应用程序添加SQL Server数据库连接的连接字符串。已知数据库服务器用户名为sa,密码为12345,使用SqlwebNews数据库,请在空白处填写代码。
< connectionStrings>
< add name=“webNewsCnnStr” connectionString=“Data Source= .\SQLEXPRESS ; Initial Catalog=(local)\SQLEXPRESS; Uid=sa; Pwd=12345” providerName=“System.Data.SqlClient”/>
< /connectionStrings>
使用上题中配置的数据库连接字符串,在后台中添加代码来判断该数据库字符串是否为空,若不为空,将输出该字符串,请将空白处填写完整。
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
string strcnn = ConfigurationManager.ConnectionStrings[“webNewsCnnStr”]. ConnectionString ;
if (strcnn = = null )
Response.Write(“该字符串为空!”);
else
Response.Write(“该字符串值为:”+ strcnn);
}
}
当页面加载时判断该数据库连接是否打开,如果没有打开将执行打开操作,同时弹出“测试成功,连接已经打开”,请将空白处填写完整。
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
……
protected void Page_Load(object sender, EventArgs e){
if (!Page.IsPostBack){
string strcnn = ConfigurationManager.ConnectionStrings
[“SqlwebNews”].ConnectionString;
SqlConnection cnn = new SqlConnection(strcnn);
try{
cnn.Open( ) ;
Label1.Text = “建立Sql Server 2005数据库连接成功”;
}
catch{
Label1.Text = “建立Sql Server 2005数据库连接失败”;
}
finally{
cnn. Close( ) ;
}
}
}