上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 50 下一页
2012年10月29日
摘要: publicoverride DataTable GetUserDataDTList(string excelPath) 02. 03. { 04. 05. excelPath = excelPath.Trim(); 06. 07. string filename =null; 08. 09. try 10. 11. { 12. 13. filename = System.Configuration.ConfigurationSettings.AppSettings["filename"].ToString(); 14. 15. } 16. 17. catch(Except 阅读全文
posted @ 2012-10-29 13:37 纳米程序员 阅读(870) 评论(0) 推荐(1) 编辑
2012年10月12日
摘要: ASP更新浏览次数的代码写法一:<%cs=rs("cs")+1 SQL="update news set cs="&cs&" where id="&request("id") conn.execute(SQL) %>写法二:<% conn.execute("update news set cs="&rs("cs")+1&" where id="&request("id") 阅读全文
posted @ 2012-10-12 11:33 纳米程序员 阅读(274) 评论(0) 推荐(0) 编辑
2012年10月11日
摘要: JQUERY对RADIO,CHECKBOX,SELECT的操作************************************************************************************************获取一组radio被选中项的值varitem=$("input[@name=items][@checked]").val();获取select被选中项的文本varitem=$("select[@name=items]option[@selected]").text();select下拉框的第二个元素为当前 阅读全文
posted @ 2012-10-11 13:48 纳米程序员 阅读(3511) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb23 阅读全文
posted @ 2012-10-11 11:07 纳米程序员 阅读(3933) 评论(0) 推荐(0) 编辑
2012年10月10日
摘要: 转自:http://www.cnblogs.com/xiayang/articles/1429622.html本篇要讲述的知识点如下:数据验证介绍纯客户端脚本验证asp.net验证控件概述RequiredFieldValidator控件CompareValidator控件RangeValidator控件正则表达式RegularExpressionValidator控件CustomValidator控件ValidationSummary控件 分组校验技术数据验证介绍在我们的开发中要提高网站的健壮性,为了做到这些笔者曾经在企业培训时候提到了两个原则:第一条原则:就是尽量减少让用户输入的机会,比如数 阅读全文
posted @ 2012-10-10 14:00 纳米程序员 阅读(740) 评论(0) 推荐(0) 编辑
2012年10月9日
摘要: <tr> <td class="table_body" style="width: 10%" align="right"> 工作目标 </td> <td class="table_none" style="width: 90%" colspan="2"> <asp:TextBox ID="txt_JobGoal" runat="server" Widt... 阅读全文
posted @ 2012-10-09 11:02 纳米程序员 阅读(1826) 评论(0) 推荐(0) 编辑
2012年10月8日
摘要: 前台:<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %><%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Web 阅读全文
posted @ 2012-10-08 10:00 纳米程序员 阅读(3371) 评论(0) 推荐(0) 编辑
摘要: sys.webForms.PageRequestManagerParserErrorException:The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(),response filters, HttpModules, or server trace trace is enabled.De... 阅读全文
posted @ 2012-10-08 09:56 纳米程序员 阅读(643) 评论(0) 推荐(0) 编辑
2012年8月1日
摘要: 只显示上边框 <table frame=above> 只显示下边框 <table frame=below> 只显示左、右边框 <table frame=vsides> 只显示上、下边框 <table frame=hsides> 只显示左边框 <table frame=lhs> 只显示右边框 <table frame=rhs> 不显示任何边框 <table frame=void> <table rules=cols cellspacing=0 align=left> ... 阅读全文
posted @ 2012-08-01 11:48 纳米程序员 阅读(12077) 评论(0) 推荐(0) 编辑
2012年7月18日
摘要: 在CSS里不好使了,在CSS里 解决上下居中问题又能支持both IE和Firefox的有3种方案:第一种,上下居中文字:方法是使用line-height,因为line-height就是用来定义文字行与行之间的距离,所以定义文字框的line-height等于框的高度可以让文字上下居中.h1 { font-size: 3em; height: 100px; line-height: 100px; } 需要注意的是:如果中间的文字不只一行,并且使用分行显示的时候,这个就不好用了.第二种,非文字的上下居中:使用absolute positioning,需要注意的是这个方法只... 阅读全文
posted @ 2012-07-18 15:31 纳米程序员 阅读(594) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 50 下一页