posted @ 2008-01-22 15:35 古道飘零客 阅读(524) 评论(2) 推荐(0) 编辑
摘要:
1 protected override void Render(HtmlTextWriter writer) 2 { 3 System.IO.StringWriter html = new System.IO.StringWriter(); 4 System.Web.UI.HtmlTextWriter tw = new HtmlTextWriter(ht... 阅读全文
摘要:
1 2 3 4 5 6 65 66 67 68 69 70 71 72 73 74 75 width:10076 height:15077 78 79 80 添加信息:AspxBoy.Com81 82 83 信息位置:left:1084 right:13585 86 87 88 89 90 91 92 93 94 95 阅读全文
posted @ 2008-01-22 15:34 古道飘零客 阅读(368) 评论(0) 推荐(0) 编辑
摘要:
1 SqlConnection conn = new SqlConnection();2 conn.ConnectionString = "Server=127.0.0.1;User ID=sa;Password=fdahgdrethj31313210212121;Database=northwind;Persist Security Info=True";3 conn.O... 阅读全文
posted @ 2008-01-22 15:33 古道飘零客 阅读(248) 评论(0) 推荐(0) 编辑
摘要:
1,关于System.Net.Mail: 首先,不要寄希望于.net中的该名字空间(或其他旧版的名字空间),因为它不提供密码验证,这样你就使用不了邮件服务器。我们将使用CDO,在C:\WINDOWS\system32\下有个叫cdosys.dll的动态链接库文件,将它复制出来,并在你的程序中引用它。 2,关于邮件服务器: 大家一定听说过Pop3,Smtp之类的名词,这是两种类型的邮件服... 阅读全文
posted @ 2008-01-22 15:31 古道飘零客 阅读(2076) 评论(1) 推荐(0) 编辑
摘要:
1 private static bool DownFile(System.Web.HttpResponse Response,string fileName,string fullPath) 2 { 3 try 4 { 5 Response.ContentType = "application/octet-stream"; 6... 阅读全文
posted @ 2008-01-22 15:29 古道飘零客 阅读(288) 评论(0) 推荐(0) 编辑
摘要:
1 2 3 4 5 WebForm2 6 7 8 9 10 39 40 41 42 43 44 45 46 47 48 49 在做一个文章添加功能时,想在选择大类后,自动将其所属二级小类显示出来,使用DropDownList的SelectedIndexChanged事件可以很容易实现,但每次选择后页面总要刷新一次... 阅读全文
posted @ 2008-01-22 15:27 古道飘零客 阅读(673) 评论(1) 推荐(0) 编辑
摘要:
1、在页面的代码头部处加入JavaScript: 1 2、在页面正文处加上 与 标识。也就是在需要用户打印保存的正文所对应的html处附加上。3、截取内容部分已完成,现在加个“打印”的链接: 打印教程 阅读全文
posted @ 2008-01-22 15:23 古道飘零客 阅读(239) 评论(0) 推荐(0) 编辑
摘要:
1. viewjava 2. public string tmp;private void Page_Load(object sender, System.EventArgs e)...{ // 在此处放置用户代码以初始化页面 tmp = "test,test1";} 阅读全文
posted @ 2008-01-22 15:22 古道飘零客 阅读(1157) 评论(0) 推荐(0) 编辑