摘要:
调用 ExportGridViewToExcel(dt, HttpContext.Current.Response); private void ExportGridViewToExcel(DataTable tb, HttpResponse response) { response.Clear() 阅读全文
摘要:
Regex reg = new Regex(@"^(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*))$"); if (!reg.IsMatch(txtorgqty.Text)) "^\d+$" / 阅读全文
摘要:
<asp:TemplateField HeaderText="实收数量"> <ItemTemplate> <asp:TextBox ID="txtorgqty" runat="server" Text='<%# string.Format("{0:0.##}",Eval("orgqty")) %>' 阅读全文
摘要:
win7+iis7.5+asp.net下 CS0016: 未能写入输出文件“c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files 解决方案 网上搜的解决方案但在我的环境下仍旧没有解决,我的方法如下: 给C:\Win 阅读全文
摘要:
RegularExpressionValidator5.ValidationExpression = @"^.*?\.(jpg|docx|bmp|gif)$"; string[] a = F.UPLOADTYPE_.Split(new char[] { ';' });string STR = ""; 阅读全文
摘要:
你想这样啊,试试这段代码看行不:右键工作表名称--查看代码,在空白处粘贴就可以Private Sub Worksheet_SelectionChange(ByVal Target As Range) Cells.Interior.ColorIndex = xlNone Target.Inter... 阅读全文
摘要:
checkbox 或者按钮实现 form 内的 checkbox 全选或者反选,代码很简单,全部代码如下:[html]view plaincopychecktest序号选择123全选效果演示 阅读全文
摘要:
#region dataGrid转换dataTable/// /// dataGrid转换dataTable/// /// dataGrid/// 返回dataTablepublic DataTable DT(DataGrid dg){try{DataTable dt = null;if(dg.Da... 阅读全文
摘要:
[DllImport("coredll",EntryPoint="PlaySound")]publicstaticexternintPlaySnd(stringpszSound,inthmod,uintfdwSound);privatevoidPlaySound_Click(objectsender... 阅读全文
摘要:
扩展Windows Mobile模拟器存储空间的方法 在Windows Mobile应用程序开发的初期,可以使用SDK自带的模拟器来进行调试,这给我们开发人员提供了一种方便的途径。一般的应用程序,占用空间的大小也就几百K,或者几M,这在模拟器上调试起来一点问题也没有。但是有的时候,我们要安装的程序或... 阅读全文