摘要:
string str="/baedeker/baeline.aspx?rid=834";str=str.SubString(str.IndexOf("=")+1,str.Length); 阅读全文
摘要:
Page.RegisterStartupScript("startscript", "<script>alert('123!');</script>"); 阅读全文
摘要:
类型“system.web.ui.updatepanel” 不具有名为“***”的公共属性,其实原因很简单。就是少了一个<ContentTemplate></ContentTemplate>“<asp:UpdatePanel ID="UpdatePanel1" runat="server"><asp:DropDownList ID="ddlUsed" runat="server"> <asp:ListItem Text="百度" Value= 阅读全文
摘要:
前台代码:<form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <div><asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" onselectedin 阅读全文
摘要:
拉了一个ScriptManager 在拉UpdatePane 在UpdatePane里面放一个Ajax控件Timer,设置时间间隔1000,在放个Label1 ,页面代码为:<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %><%@ Register Assembly="System.Web.Extensions, Version=1.0.61025. 阅读全文
摘要:
//2011年10月31日 this.Label6.Text = System.DateTime.Now.ToString("D"); //2011-10-31 this.Label7.Text = System.DateTime.Now.ToString("d"); //2011年10月31日 16:10:15 this.Label8.Text = System.DateTime.Now.ToString("F"); //2011年10月31日 16:10 this.Label9.Text = System.DateTime.Now 阅读全文
摘要:
代码如下:View Code 1 protected void btnDelete(object sender, EventArgs e) 2 { 3 4 try 5 { 6 System.IO.DirectoryInfo path = new System.IO.DirectoryInfo(Server.MapPath("/Test")); 7 deletefile(path); 8 Page.RegisterSt... 阅读全文
摘要:
1,注册表扫描@echo offtitle 注册表扫描中...mode con cols=50 lines=10setlocal enabledelayedexpansion>%temp%\reglist.txt echo %DATE%%time% 注册表扫描报告for /f "tokens=3 delims=\" %%i in ('reg query HKLM\SOFTWARE') do (echo 当前扫描信息: HKLM\SOFTWARE\%%i>>%temp%\reglist.txt echo =================== 阅读全文
摘要:
打开.Net Framework附带的SDK命令提示符。加密命令:aspnet_regiis -pe "connectionStrings" -app "/encrypttest" -pe开关用来指定web.config中需要加密的节(Web.Config文件中的connectionStrings配置节)。 -app开关用来指定IIS里面的虚拟目录,如果为根目录网站,为"/".解密命令:aspnet_regiis -pd "connectionStrings" -app "/encrypttest&quo 阅读全文
摘要:
ACCESS模糊查询出现的问题,开发中需要注意!在SQL Server中模糊查询通常是这样的Select * from articleTable where authorName like '%jacky%'但是在Access中用这条语句执行的时候竟然发现查不出结果,怎么可能呢?后来查了下资料,发现问题如下:要进行模糊查找,则必须使用通配符,ACCESS库的通配符和SQL SERVER的通配符不一样。ACCESS库的通配符为:* 与任何个数的字符匹配。? 与任何单个字母的字符匹配在SQL Server中的通配符为:% 与任何个数的字符匹配- 与单个字符匹配正确写法应是:在C#里 阅读全文