摘要:
Google搜索排名靠前十个绝密方法 1、访问http://www.google.com/webmasters/sitemaps 并加添加你网站的sitemaps文件。sitemaps文件就像建立一个目录,把你的网站的各个页面包含进去。google的网站概述服务在工作时,一次只读取你一个sitemaps文件,而不会访问其它不包含你所设定... 阅读全文
摘要:
IE5.5开始支持浮动框架的内容透明。如果想要为浮动框架定义透明内容,则必须满足下列条件。 1.与 iframe 元素一起使用的 allowTransparency 标签属性必须设置为 true。 2.在 iframe 内容源文档,background-color 或 body 元素的 bgColor 标签属性必须设置为 transparent。 具体步骤: 1. 包含框架页的代码。 ... 阅读全文
摘要:
select * from table where name like '%' + @name + '%' 阅读全文
摘要:
错误: Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. ... 阅读全文
摘要:
调用方法 test 调用方法 test 阅读全文
摘要:
在 style中加入 margin-left:0px;word-break:break-all; 英文就可以自动换行了 阅读全文
摘要:
function SelectAll() { var lst1=window.document.getElementById("SourceListBox"); var length = lst1.options.length; for(var i=0;i0;i--) { ... 阅读全文
摘要:
1判断select选项中 是否存在Value="paraValue"的Item 2向select选项中 加入一个Item 3从select选项中 删除一个Item 4删除select中选中的项 5修改select选项中 value="paraValue"的text为"paraText" 6设置select中text="paraText"的第一个Item为选中 7设置sel... 阅读全文
摘要:
if(System.Web.HttpContext.Current.Request.ServerVariables["HTTP_VIA"]!=null) { UserIP = System.Web.HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString(); } el... 阅读全文