C# asp.net中常见的字符串处理函数及数字格式化
//1.字符串比较 //字符串.ComparTo(目标字符串) "a".ComparTo("b"); //2.查找子串 //字符串.IndexOf(子串,查找其实位置) ; //字符串.LastIndexOf(子串) ;最后一次出现的位置 str.IndexOf("ab",0); //3 …… 阅读全文
//1.字符串比较 //字符串.ComparTo(目标字符串) "a".ComparTo("b"); //2.查找子串 //字符串.IndexOf(子串,查找其实位置) ; //字符串.LastIndexOf(子串) ;最后一次出现的位置 str.IndexOf("ab",0); //3 …… 阅读全文
using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.W …… 阅读全文
//Execl某单元格数据为 2012-1-10 读取到DataTable变为40918 不是正确的2012-1-10 //解决方法一: //strValue是你的日期40918 值带进来 public static string getDateStr(string strValue) { int i = Convert.ToInt32(s …… 阅读全文
public static string ExportTable(DataSet ds) { StringBuilder sb = new StringBuilder(); int count = 0; foreach (DataTable tb in ds.Tables) { sb.A …… 阅读全文
private void Page_Load(object sender, System.EventArgs e) { beginProgress(); for (int i = 1; i <= 100; i++) { setProgress(i); //此处用线程休眠代替实际的操作,如加载数据 …… 阅读全文
using System;using System.Collections.Generic;using System.Text;using System.Data.SQLite; //引用using System.Data;using System.Data.Common;namespace MSCL{ /// /// 本类为SQLite数据库帮助类 …… 阅读全文
<asp:GridView ID="GridView1" runat="server" ClientIDMode="Static" AutoGenerateColumns="True" CssClass="gvCss" onrowcreated="GridView1_RowCreated"> protected void GridView1_RowCreated …… 阅读全文
/// /// 将DT转换为Execl的方法 /// /// 需要导出的DT /// 页面 /// 文件名 public void ToExecl(DataTable dt, Page page, string fileName) { HttpResponse response = page.Respons …… 阅读全文