真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

ToString()格式和用法大全-創(chuàng)新互聯(lián)

網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)公司!專(zhuān)注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、微信小程序定制開(kāi)發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了慶元免費(fèi)建站歡迎大家使用!C

ToString()格式和用法大全 C
貨幣
2.5.ToString("C")
¥2.50
D
十進(jìn)制數(shù)
25.ToString("D5")
00025
E
科學(xué)型
25000.ToString("E")
2.500000E+005
F
固定點(diǎn)
25.ToString("F2")
25.00
G
常規(guī)
2.5.ToString("G")
2.5
N
數(shù)字
2500000.ToString("N")
2,500,000.00
X
十六進(jìn)制
255.ToString("X")
FF
formatCode 是可選的格式化代碼字符串。(詳細(xì)內(nèi)容請(qǐng)搜索“格式化字符串”查看) 必須用“{”和“}”將格式與其他字符分開(kāi)。如果恰好在格式中也要使用大括號(hào),可以用連續(xù)的兩個(gè)大括號(hào)表示一個(gè)大括號(hào),即: “{{”或者“}}”。
常用格式舉例:
(1) int i=12345;
this.textBox1.Text=i.ToString();
//結(jié)果 12345(this指當(dāng)前對(duì)象,或叫當(dāng)前類(lèi)的實(shí)例)
this.textBox2.Text=i.ToString("d8");
//結(jié)果 00012345
(2) int i=123;
double j=123.45;
string s1=string.Format("the value is {0,7:d}",i);
string s2=string.Format("the value is {0,7:f3}",j);
this.textBox1.Text=s1 ;
//結(jié)果 the value is 123
this.textBox2.Text=s2;
//結(jié)果 the value is 123.450
(3)double i=12345.6789;
this.textBox1.Text=i.ToString("f2"); //結(jié)果 12345.68
this.textBox2.Text=i.ToString("f6");
//結(jié)果 12345.678900
(4)double i=12345.6789;
this.textBox1.Text=i.ToString("n"); //結(jié)果 12,345.68
this.textBox2.Text=i.ToString(“n4”); //結(jié)果 12,345.6789
(5)double i=0.126;
string s=string.Format("the value is {0:p}",i);
this.textBox1.Text=i.ToString("p"); //結(jié)果 12.6%
this.textBox2.Text=s; //結(jié)果 the value is 12.6%
(6) DateTime dt =new DateTime(2003,5,25);
this.textBox1.Text=dt.ToString("yy.M.d");
//結(jié)果 03.5.25
this.textBox2.Text=dt.ToString(“yyyy年M月”);
//結(jié)果 2003年5月
(7) int i=123;
double j=123.45;
string s=string.Format("i:{0,-7},j:{1,7}",i,j);
//-7表示左對(duì)齊,占7位
this.textBox1.Text=s ;
//結(jié)果i:123 ,j: 123.45
******DataBinder.Eval用法范例***********************************************************************
//顯示二位小數(shù)
//<%# DataBinder.Eval(Container.DataItem, "UnitPrice", "${0:F2}") %>
//{0:G}代表顯示True或False
<%# DataBinder.Eval(Container.DataItem, "Discontinued", "{0:G}") %>
//轉(zhuǎn)換類(lèi)型
((string)DataBinder.Eval(Container, "DataItem.P_SHIP_TIME_SBM8")).Substring(4,4)
{0:d} 日期只顯示年月日
{0:yyyy-mm-dd} 按格式顯示年月日
{0:c} 貨幣樣式
<%#DataBinder.Eval(Container.DataItem,"h_yk", "${0:F2}") %>美元
如何設(shè)定全局變量
Global.asax中Application_Start()事件中添加Application[屬性名] = xxx;就是你的全局變量
添加一個(gè)編號(hào)列:
DataTable dt= c.ExecuteRtnTableForAccess(sqltxt); //執(zhí)行sql返回的
DataTable DataColumn dc=dt.Columns.Add("number",System.Type.GetType("System.String"));
for(int i=0;i{
dt.Rows ["number"]=(i+1).ToString();
}
DataGrid1.DataSource=dt;
DataGrid1.DataBind();
DataGrid1中添加一個(gè)CheckBox,頁(yè)面中添加一個(gè)全選框
private void CheckBox2_CheckedChanged(object sender, System.EventArgs e)
{
foreach(DataGridItem thisitem in DataGrid1.Items)
{
((CheckBox)thisitem.Cells[0].Controls[1]).Checked=CheckBox2.Checked;
}
}
獲取錯(cuò)誤信息并到指定頁(yè)面
不要使用Response.Redirect,而應(yīng)該使用Server.Transfer
// 在 global.asax 中
    protected void Application_Error(Object sender, EventArgs e)
    {
    if (Server.GetLastError() is HttpUnhandledException)
Server.Transfer("MyErrorPage.aspx");
//其余的非HttpUnhandledException異常交給ASP.NET自己處理就okay了 :)
}
Redirect會(huì)導(dǎo)致post-back的產(chǎn)生從而丟失了錯(cuò)誤信息,所以頁(yè)面導(dǎo)向應(yīng)該直接在服務(wù)器端執(zhí)行,這樣就可以在錯(cuò)誤處理頁(yè)面得到出錯(cuò)信息并進(jìn)行相應(yīng)的處理
當(dāng)前文章:ToString()格式和用法大全-創(chuàng)新互聯(lián)
文章網(wǎng)址:http://weahome.cn/article/dehgph.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部