摘要:
前台:<div id="divZyszfx" runat="server">123123</div>后台OnLoad方法: if (Session["__LoginUser"] != null) { if (Session["__LoginUser"] is User) { this.FindControl("divZyszfx").Visible = false; } else if (Session["__LoginUser"] is Master 阅读全文
摘要:
近日在用vs2005开发web相关东西时,发现vs2005不能在IE8中调试,每次按F5启动调试的时候总是不能成功启动调试。效果和按CTRL+F5一样。就是把项目显示在了浏览器之后,那个启动调试的绿色按钮还可以使用,不是暗色的,从网上搜索,终于得到答案!解决方法如下:修改注册表:HKEY_LOCALMACHINE -> SOFTWARE -> Microsoft -> Internet Explorer -> Main增加dword键TabProcGrowth,值为0就行! 阅读全文
摘要:
复制下面的代码,然后把粘贴到本页面地址栏,然后按回车键。你会看到很漂亮的奇迹哦。(人格担保,绝非病毒)试验前请记住:要结束奇迹只需按F5键。 javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.images; DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=Math 阅读全文
摘要:
keywords: ValidateRequest System Configuration Request.Form FCKeditor Web.Config 潜在危险 应用程序出错 ASP.NET今天写完程序测试的时候,测试文章添加页面,当添加文章的内容过于复杂,及包含特殊字符,样式定义等等的时候,偶尔会出错(编译器用的是FCKeditor),这错误很常见,之前没整理到博客,今天在此发一下。错误提示:从客户端(fck_content="<h2><span style="bac...")中检测到有潜在危险的 Request.Form 值。 说明 阅读全文
摘要:
1.放一个labelC#代码 DataTabletable=newDataTable(); repeater1.DataSource=table; repeater1.DataBind(); if(table.Rows.Count==0)//或者repAcctLedger.Items.Count==0 { label1.Text="暂无查询结果"; } else { label1.Text=""; }DataTable table = new DataTable(); repeater1.DataSource = table; repeater1.Dat 阅读全文
摘要:
下载地址: http://xheditor.googlecode.com/files/xheditor-1.1.9.zip 阅读全文
摘要:
今日第一次玩AJAX,在本地我们调试运行AJAX.NET程序完全没有问题,但是一旦搭建网站后就出现 了一个Web.config文件异常:Configuration ErrorDescription: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.Parser 阅读全文
摘要:
e.Item.ItemTypee.Item.ItemType 在数据绑定获取行中内容或控件的时候我们经常用到这个,看名字就知道这是什么什么的类型。呵呵~~~~常用的有下面几种:1:e.Item.ItemType==ListItemType.Item||e.Item.ItemType==ListItemType.AlternatingItem 指触发的类型为DadaList中的基本行或内容行2:e.Item.ItemType == ListItemType.Header 指触发的类型为DadaList中的标题行的内容察看相关资料可以看到如下相关信息ListItemType 枚举 [C#]请参见S 阅读全文
摘要:
Format(date, "yyyy-mm-dd") 阅读全文
摘要:
如果你的数据库的表的设计包含了Access包含的关键字(常用的System,master,admin,user,useres,userid,Money等),则在插入更新的时候会出现“语法错误”例如:update Ans_NaireText set text ='123456 ' where userid=19 and naireid=13 执行遇见语法错误text解决办法,将text用[]括起来,如下: update Ans_NaireText set [text] ='123456 ' where userid=19 and naireid=13例如:stri 阅读全文