上一页 1 ··· 4 5 6 7 8 9 下一页
摘要: 解决方法:iis-主目录-配置-插入dll 阅读全文
posted @ 2011-04-20 13:46 红鲤鱼与驴与绿鲤鱼 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 存储过程set ANSI_NULLS ONset QUOTED_IDENTIFIER ONgoALTER proc [dbo].[memberproductInsert]@Name varchar(50),@TypeID varchar(50), @KeyWord nvarchar(40),@Picture nvarchar(100),@Detail text,@AddDate datetime,@Price float,@UserID int,@Verify int,@Sort int,@Ask varchar(100),@IsTop bit,@LastDate datetime,@Mone 阅读全文
posted @ 2011-04-13 15:02 红鲤鱼与驴与绿鲤鱼 阅读(554) 评论(0) 推荐(0) 编辑
摘要: <form id="form1" name="form1" method="post" action=""> <li><a title="收藏本店" href="javascript:void(0)" id="shopcollection">收藏本店</a></li> </form><input type="hidden" name="bid&quo 阅读全文
posted @ 2011-03-28 09:20 红鲤鱼与驴与绿鲤鱼 阅读(1305) 评论(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> <title></title> <script src="js/jquery.js" type=&q 阅读全文
posted @ 2011-03-25 09:58 红鲤鱼与驴与绿鲤鱼 阅读(2130) 评论(0) 推荐(1) 编辑
摘要: 存储过程set ANSI_NULLS ONset QUOTED_IDENTIFIER ONgoALTER proc [dbo].[getRecordByPage] @TotalPage int output,--总页数 @RowsCount int output,--总条数 @PageSize int,--每页多少数据 @CurrentPage int,--当前页数 @SelectFields nvarchar(1000),--select 语句但是不包含select @IdField nvarchar(50),--主键列 @OrderField nvarchar(50),--排序字段,如果是 阅读全文
posted @ 2011-03-18 10:24 红鲤鱼与驴与绿鲤鱼 阅读(239) 评论(0) 推荐(1) 编辑
摘要: <script language="javascript">function SetVisible(){ document.getElementById("<%=TextBox1.ClientID%>").style.display="none";}</script> 阅读全文
posted @ 2011-03-09 10:13 红鲤鱼与驴与绿鲤鱼 阅读(392) 评论(0) 推荐(0) 编辑
摘要: protected string[] GetSrc(string str) { string regStr = "\\<IMG\\ [\\s\\S]*?src=['\"]?(?<p>[^'\"\\>\\ ]+)['\"\\>\\ ]"; string cont1 = string.Empty; //图片的src Regex reg = new Regex(regStr, RegexOptions.Compiled | RegexOptions.IgnoreCase); Match match 阅读全文
posted @ 2011-03-04 13:55 红鲤鱼与驴与绿鲤鱼 阅读(1011) 评论(0) 推荐(0) 编辑
摘要: protected string removeHtml(string HTMLStr) { return Regex.Replace(HTMLStr, @"<IMG.*?src=(['""]?)(?<url>[^'"" ]+)(?=\1)[^>]*>", delegate(Match m) { return ""; }); } 阅读全文
posted @ 2011-03-04 13:27 红鲤鱼与驴与绿鲤鱼 阅读(315) 评论(0) 推荐(1) 编辑
摘要: public static string ParseTags(string HTMLStr) { return Regex.Replace(HTMLStr, "<[^>]*>", string.Empty, RegexOptions.IgnoreCase); } 阅读全文
posted @ 2011-03-03 17:02 红鲤鱼与驴与绿鲤鱼 阅读(255) 评论(1) 推荐(0) 编辑
摘要: protected MemberInfo GetCacheMemberInfo(string userName) { MemberInfo minfo = new MemberInfo();//实体 minfo = System.Web.HttpRuntime.Cache.Get("HotPP_" + userName) as MemberInfo;//读缓存 if (minfo == null) { MemberInfo[] minfos = SASAPIHelper.GetMembers(1); List<MemberInfo> mlist = new Li 阅读全文
posted @ 2011-02-25 11:24 红鲤鱼与驴与绿鲤鱼 阅读(584) 评论(2) 推荐(1) 编辑
上一页 1 ··· 4 5 6 7 8 9 下一页