C#Web应用程序入门经典学习笔记之二
2024-09-07 17:05:20
供稿:网友
读取Web.config中设置
Conn = new SqlConnection(ConfigurationSettings.AppSettings[“cnFriends.ConnectString”]);
<appSettings>
<!-- User application and configured property settings go here.-->
<!-- Example: <add key="settingName" value="settingValue"/> -->
<add key="cnFriends.ConnectionString" value="data source=(local)/NetSdk;initial catalog=FriendsData;user id=sa" /> </appSettings>
几个命名空间
当用到DataSet时,用using system.Data.SqlClient
当配置Web.config时,用using system.Configuration
这个让我想起了大一学习C语言时
bool visible
btnSearch.Text = visible? “New Search” : “Search” ;
这个也蛮好
dsResult.tables[“Users”].rows.count
Conver.Tonint32(ConfigurationSettings.AppSettings[“Cokuale.number”]);
够狠1:用Session保存结果并绑定
Session[“Search”] = dsResults;
dsResults = (DataSet) Session[“Search”];
grdResults.DataBind();
其实,Session,Application等存的是object 类型,因此,最后都要显式转换类型
顺便说说,判断是否取到字符串类型的值用null 判断。
够狠2:从DataTable中选择行
DataRow[] rows = dsResults.Tables[“Users”].Select(filter);
dsResults = dsResults.Clone();
foreach(DataRow row in rows)
{
dsResults.Tables[“Tables”].ImportRow(row);
}
获取webForm 上的一个控件
ImageButton img = (ImageButton)e.Item.FindControl(“Selectbutton”)
跳转:
Server.Transfer(“Caoxicao.aspx”);
服务器控件添加js脚本(Attributes属性)
imgShow.Attributes.Add(“onclick”,”document.getElementById(‘tbPrefs').style.display = ‘block';”);
再(Style属性),
img.Style.Add(“Cursor”,'Pointer');
Color相关:
ColorConvert cv = new ColorConvert();
Color selected = Color.Empty;
Selected = (olor)cv.ConvertFromString(White);
增加Cookie
Response.Cookies.Add(new HttpCookie(“backColor”,r))
我的最爱----用户控件
Using FriendsReunion.Controls;
Protectd override void Oninit(EventArgs e)
{
FriendsFooter _footer = (FriendsFooter)LoadControl(Request.ApplicationPath+”/Controls/ FriendsFooter.aspx”);