摘要:
其实我的方法非常简单,也可以说没什么技术含量,甚至还不支持IE6,但据我长期的观察,确实非常实用的。Analytics的统计数据表明,加入了这一效果之后,用户的“平均停留时间”的确有所提高。可见,一个“正在加载”让许多用户都有更多的耐心等待,而不会因为屏幕空白太久而不耐烦地离开。最近,又有不少朋友留言询问这个Loading的实现原理。这里我就分享一下... 阅读全文
摘要:
答案一Page.Request.UrlReferrer.ToString()答案二本页地址: Request.URL; 上页地址: Request.UrlReferrer Request.ServerViables["http_referer"] Request.RawUrl Request.RawUrl.QueryAndPath System.IO.Path.GetFileName(Request.FilePath.ToString()) <script> var url = document.location.href; </script> 阅读全文
摘要:
举一个Northwind的例子。DECLARE @m_LastName nvarchar(20)DECLARE @Sql varchar(256)SET @m_LastName = 'Fuller'SET @Sql = 'SELECT * FROM Employees WHERE LastName='+ char(39) + @m_LastName + char(39) EXEC(@Sql)注意,要加上char(39)就可以了。 阅读全文
摘要:
以前拼接的写法set @sql=' select * from table where 1=1 'if (@addDate is not null) set @sql = @sql+' and addDate = '+ @addDate + ' ' if (@name <>'' and is not null) set @sql = @sql+ ' and name = ' + @name + ' 'exec(@sql)下面是 不采用拼接SQL字符串实现多条件查询的解决方案第一种写法是 阅读全文