上一页 1 ··· 7 8 9 10 11
摘要: area不能独立出现, 必须嵌套在map中, map只作为area的容器:shape属性指明了区域的形状, coords指明了形状边界的几个点(左、上、右、下), href为导航到哪里的url<map name="Map"><area shape="rect" coords="890,50,947,74" href="javascript:window.external.AddFavorite('http://www.qdtwjy.com/','我的个人网站')" 阅读全文
posted @ 2012-11-05 10:09 Liu66~ 阅读(226) 评论(1) 推荐(1) 编辑
摘要: <body oncontextmenu="return false" onselectstart="return false" ondragstart="return false" onbeforecopy="return false" onmouseup=document.selection.empty() oncopy=document.selection.empty() onselect=document.selection.empty()></body>onselectstart=& 阅读全文
posted @ 2012-11-05 10:08 Liu66~ 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 选中FLASH,然后在属性中为FLASH添加以下两个参数即可:1、名字:wmode;值为:Transparent2、名字:wmode;值为:Opaque 阅读全文
posted @ 2012-11-05 10:07 Liu66~ 阅读(134) 评论(0) 推荐(0) 编辑
摘要: function StrLen(Str) if Str="" or isnull(Str) then StrLen=0 exit function else dim regex set regex=new regexp regEx.Pattern ="[^\x00-\xff]" regex.Global =true Str=regEx.replace(Str,"^^") set regex=nothing StrLen=len(Str) end ifend function注:[^\x00-\xff]:匹配双字节字符(包括汉字在内) 阅读全文
posted @ 2012-11-05 10:05 Liu66~ 阅读(204) 评论(0) 推荐(0) 编辑
摘要: function StrLeft(Str,StrLen) dim L,T,I,C if Str="" then StrLeft="" exit function end if Str=Replace(Replace(Replace(Replace(Str,"&nbsp;"," "),"&quot;",Chr(34)),"&gt;",">"),"&lt;","<") L=Le 阅读全文
posted @ 2012-11-05 10:04 Liu66~ 阅读(200) 评论(0) 推荐(0) 编辑
摘要: function HtmlStrReplace(Str) if Str="" or isnull(Str) then HtmlStrReplace="" exit function else HtmlStrReplace=replace(Str,"&lt;br&gt;","<br />") end ifend functionfunction StrReplace(Str) if Str="" or isnull(Str) then StrReplace=" 阅读全文
posted @ 2012-11-05 10:02 Liu66~ 阅读(293) 评论(0) 推荐(0) 编辑
摘要: Function FormatDate(DateAndTime, Format) On Error Resume Next Dim yy,y, m, d, h, mi, s, strDateTime FormatDate = DateAndTime If Not IsNumeric(Format) Then Exit Function If Not IsDate(DateAndTime) Then Exit Function yy = CStr(Year(DateAndTime)) y = Mid(CStr(Year(DateAndTime)),3) m = CStr(Mont... 阅读全文
posted @ 2012-11-05 10:00 Liu66~ 阅读(281) 评论(0) 推荐(0) 编辑
摘要: Public Function FormatDT(dt, style)'style=0 2000-10-10 下午 12:17:45'style=1 2000-10-10 23:17:45'style=2 2000-10-10 23:45'style=3 00-10-10 23:45'style=4 10-10 23:45'style=5 2000-10-10'style=6 00-10-10'style=7 10-10'style=8 23H-45M-45S'style=9 20001010231745' 阅读全文
posted @ 2012-11-05 09:59 Liu66~ 阅读(232) 评论(0) 推荐(0) 编辑
摘要: <TABLE cellSpacing=0 cellPadding=0 width="96%" border=0> <TBODY> <TR> <TD align=left> <UL> <% set rs=server.CreateObject("adodb.recordset") sql = "select * from Ejz_User order by P_AddDate DESC" rs.Open sql,conn,1,1 If r... 阅读全文
posted @ 2012-11-05 09:55 Liu66~ 阅读(168) 评论(0) 推荐(0) 编辑
摘要: <table width="200" border="0" cellspacing="0" cellpadding="0"> <tr> <td> <select name="P_JuZhuDi_Area" id="P_JuZhuDi_Area" onChange="changepro('P_JuZhuDi_City','P_JuZhuDi_Area');"> <optio 阅读全文
posted @ 2012-11-05 09:52 Liu66~ 阅读(2437) 评论(0) 推荐(0) 编辑
摘要: 2.2.4新增{aspcms:form}、{navlist:pic} 请对照以下说明,更多信息请访问 http://www.aspcms.com一、网站通用标签{aspcms:sitepath} 网站终极目录(可放在二级目录,其它语言则在三级目录){aspcms:languagepath} 语言目录{aspcms:siteurl} 网站地址{aspcms:sitelogo} LOGO地址{aspcms:sitetitle} 网站标题{aspcms:additiontitle... 阅读全文
posted @ 2012-11-05 09:49 Liu66~ 阅读(297) 评论(0) 推荐(0) 编辑
摘要: 把文本框中的信息显示在下拉列表中(信息之间用/隔开)"" then%> 阅读全文
posted @ 2012-11-05 09:45 Liu66~ 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 用SQL语句添加删除修改字段 1.增加字段 alter table docdsp add dspcode char(200) 2.删除字段 ALTER TABLE table_NAME DROP COLUMN column_NAME 3.修改字段类型 ALTER TABLE table_name ALTER COLUMN column_name new_data_type 4.sp_rename 改名 更改当前数据库中用户创建对象(如表、列或用户定义数据类型)的名称。 语法 sp_rename [ @objname = ] 'object_name' , [ @newna... 阅读全文
posted @ 2012-11-05 09:17 Liu66~ 阅读(446) 评论(0) 推荐(0) 编辑
摘要: protected void gvBookTaxis_RowDataBound(object sender, GridViewRowEventArgs e) { if (gvBookTaxis.PageIndex == 0)//判断是否是从第一页开始 { if (e.Row.RowIndex != -1) //判断GridView控件中是否有值 { int id = e.Row.RowIndex + 1;//将当前行的索引加上一赋值给变量id e.Row... 阅读全文
posted @ 2012-11-05 08:30 Liu66~ 阅读(323) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11