摘要:
using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.We... 阅读全文
摘要:
NET中Eval()方法大全 <%# Bind("Subject") %> //绑定字段 <%# Container.DataItemIndex + 1%> //实现自动编号 <%# DataBinder.Eval(Container.DataItem, "[n]") %> 通常使用的方法(这三个性能最好) <%# DataBinder.Eval(Cont... 阅读全文
摘要:
方案一:Try...Catch(执行效率不高)/// /// 名称:IsNumberic/// 功能:判断输入的是否是数字/// 参数:string oText:源文本/// 返回值: bool true:是 false:否/// private bool IsNumberic(string oText){try {int var1=Convert.ToInt32 (oText);return t... 阅读全文
摘要:
c# 中最高效的string to float1public float StrToFloat(object FloatString)2{3float result;4if (FloatString != null)5{6if (float.TryParse(FloatString.ToString(), out result))7return result;8else9{10return (fl... 阅读全文
摘要:
为DataGridTextColumn设置表头样式和单元格样式方法是把样式作为全局资源使用。 1、在App.xaml中引用命名空间 xmlns:Primitives="clr-namespace:System.Windows.Controls.Primitives;assembly=System.Windows.Controls.Data" xmlns:Controls="clr-namespac... 阅读全文