摘要:
20世纪80年代前半期,计算机病毒大多处于实验室阶段。偶尔有少数几种病毒会感染Apple II平台。但毕竟,仍在人们但掌控之下。全文 阅读全文
摘要:
private void btnUpload_Click(object sender, System.EventArgs e){ //得到用户要上传的文件名 string strFilePathName = loFile.PostedFile.FileName; string strFileName = Path.GetFileName(strFilePathName); int FileLeng... 阅读全文
摘要:
private void LoginButton_Click(object sender,System.EventArgs e){ String sql=String.Format("select password from Administrator where AdminID='{0}',UseridBox.Text); SqlConnection conn=new... 阅读全文
摘要:
private void btnSubmit_Click(object sender, System.EventArgs e){ //SmtpMail.Send("shaozhd@263.net","shaozhd@263.net","Test","Hello"); MailMessage m = new MailMessage(); m.From = tbFrom.Text; m.To = t... 阅读全文
摘要:
在以下按钮单击事件中实现:private void btnMIME_Click(object sender, System.EventArgs e){dgShow.AllowPaging = false; BindData(); Response.ContentType = "application/vnd.ms-excel"; Response.AddHeader("Content-Disp... 阅读全文
摘要:
private void CustomValidator1_ServerValidate(object source, System.Web.UI.WebControls.ServerValidateEventArgs args){ int i=db.DataValid(args.Value); /*args.Value即为所要验证的值*/ /*db.DataValid... 阅读全文
摘要:
private void dgSearch_ItemDataBound(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e){ if(e.Item.ItemType==ListItemType.Item ||e.Item.ItemType==ListItemType.AlternatingItem) /*判... 阅读全文
摘要:
在.aspx页面中添加: 在Page_Load事件中添加:tbInput.Attributes.Add("onkeydown","SubmitKeyClick('btnOK');"); 阅读全文
摘要:
window.open使用方法以及参数说明window.open参数window.open方法window.open使用一、window.open()支持环境:JavaScript1.0+/JScript1.0+/Nav2+/IE3+/Opera3+ 二、基本语法:window.open(pageURL,name,parameters)其中:pageURL为子窗口路径name为子窗口句柄param... 阅读全文
摘要:
private void FileDownload(string FullFileName){ FileInfo DownloadFile=new FileInfo(FullFileName); Response.Clear(); Response.ClearHeaders(); Response.Buffer=false; Response.ContentType="application/oc... 阅读全文
摘要:
Web.config中: .aspx.cs中:System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"]; 阅读全文
摘要:
在web.config中添加httpRuntime元素,如下: 其中maxRequestLength属性就是限制上传大小的,如设为"8192"即为8M。 阅读全文
摘要:
虽然 Apache 的名声可能比 IIS 好,但我相信用 IIS 来做 Web 服务器的人一定也不少。说实话,我觉得 IIS 还是不错的,尤其是 Windows 2003 的 IIS 6(马上 Longhorn Server 的 IIS 7 也就要来了,相信会更好),性能和稳定性都相当不错。但是我发现许多用 IIS 的人不太会设置 Web 服务器的权限,因此,出现漏洞被人黑掉也就不足为奇了。但我们... 阅读全文