摘要:
private string toadd = "├"; protected void Page_Load(object sender, EventArgs e) { //if (!this.IsPostBack) //{ // this.buildTree(); //} if (!IsPostBack) { this.GetArticleCategory("根列表"); } this.... 阅读全文
摘要:
protected void Application_AuthenticateRequest(Object sender, EventArgs e) { if (HttpContext.Current.User != null)//如果当前的http信息中存在用户信息 { if (HttpContext.Current.User.Identity.IsAuthenticated)//如果当前用户的... 阅读全文
摘要:
怎样把SQL2005的数据库转换成SQL2000的数据库用2005 Managament Studio 在数据库属性里面把兼容性直接设置为SQL SERVER 2000模式就行了。1.导出数据库语法为Sql文件. 2.到户所有数据到Maccess件(mdb) 3.新建2000数据库. 4.在库中执行创建的sql语法. 5.导入access中的数据. 完成sql2005转到sql2000的步骤 20... 阅读全文
摘要:
验证码/*using System.Drawing;using System.Drawing.Drawing2D;using System.Drawing.Imaging;using System.Drawing.Text;*/ //建立位图对象 Bitmap newBitmap = new Bitmap(36, 16, PixelFormat.Format32bppArgb); //根据上面创建... 阅读全文
摘要:
public class baseclass{ public bool sendemail(string toadd, string sb, string subject)//toadd:目的地址 ,sb:内容 ,subject主题 { try { MailAddress from = new MailAddress("sweting@163.com");//用于发送邮件的地址。 MailAd... 阅读全文
摘要:
<!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 id="Head1" run... 阅读全文
摘要:
window.onload = null;window.open('','_parent','');window.close();如果要关闭的页是window.open的话,红色部分不要就可以了,但如果是正常打开的网页,ie7会给出一个提示,这个时候加上红色部分欺骗一下浏览器,这样就不会出那个"您确定要提交问卷吗?提交后不能再进行修改。"的提示了! 阅读全文
摘要:
1. 弹出网页对话框 <SCRIPT LANGUAGE="javascript"> <!-- window.open ('page.html', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=n... 阅读全文
摘要:
开发平台:Visual Studio 2005 语言:C#首先添加应用"Microsoft Word 11.0 Object library"的COM组件,从而来实现读取word文档的对象。然后添加命名空间using System.Windows.Forms; //添加应用,添加System.Windows.Forms 的.NET组件代码实现:object filepath = this.File... 阅读全文
摘要:
上传图片的是HTML 控件:FILE 定义如下: ..<input type="file">.. 为了显示图片先给个服务器控件 Image: ...<asp:Image ImageUrl="预先显示图片.gif" ranunt="server">... 下面实现当File内容改变,即图片地址改变时,Image显示不同图片: 在 File 控件里的onchange加处理事件:... 阅读全文