2015年11月3日 星期二

C# Int String 轉換



String轉換1. ToString()方法   2.System.Convert.ToString()

int轉換1. int.Parse(xxxxxxxxxxxxxx)    2.System.Convert.ToIntXX()

https://msdn.microsoft.com/zh-tw/library/bb397679.aspx
http://kuomingwang.blogspot.tw/2009/03/c-int-string.html



TextBox限制只能輸入數字
http://adamagod.blogspot.tw/2012/10/c-net-textbox.html

在前端加入Script如下

然後再後端把想要限制的TextBox在他的Attribute加入一個OnKeyPress的事件會去呼叫上面的javascript即可!

txtOnlyNumber.Attributes.Add("OnKeyPress", "txtKeyNumber();");



沒有留言: