摘要:
/*! jQuery v1.7.2 jquery.com | jquery.org/license */ (function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType 9?a.defaultView||a.parentWindow:! 阅读全文
摘要:
* { margin:0px; padding:0px; } .daohang { position:relative; width:10%; height:50px; overflow:hidden; float:left; margin-left:10px; } .div1 { position 阅读全文
摘要:
阅读全文
摘要:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xh 阅读全文
摘要:
步骤: 1、先将项目中的相对路径位置写出来 string path = "images/aaa.txt"; 2、将此相对路径映射成绝对路径 string endpath = Server.MapPath(path); 3、保存 FileUpload1.SaveAs("endpath"); 问题1:文 阅读全文
摘要:
//窗体移动API [DllImport("user32.dll")] public static extern bool ReleaseCapture(); [DllImport("user32.dll")] public static extern bool SendMessage(IntPtr hwnd, int wMsg, int wParam, int IParam); public ... 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Web; /// <summary> /// ChinaStates 的摘要说明 /// </summary> public class C 阅读全文
摘要:
应用举例: "^\d+$" //非负整数(正整数 + 0) "^[0-9]*[1-9][0-9]*$" //正整数 "^((-\d+)|(0+))$" //非正整数(负整数 + 0) "^-[0-9]*[1-9][0-9]*$" //负整数 "^-?\d+$" //整数 "^\d+(\.\d+)?$ 阅读全文