c# asp.net 调用系统设置字体文本框,设置label或页面字体,大小,FontDialog
摘要:一,调用系统字体文本框 首先在bin文件夹右击--添加引用--.net标签里选择System.Windows.Forms--确定 然后在cs文件里引入,using System.Windows.Forms; 在代码里写 C#代码 FontDialogfd=newFontDialog(); fd.ShowDialog().ToString();FontDialog fd = new FontDial...
阅读全文
posted @
2009-08-25 14:13
米高佐敦
阅读(1226)
推荐(0)
c# asp.net webform web页面打印,可以控制需要打印和不需要打印的位置
摘要:html页面的web打印示例 Html代码 <!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head&g...
阅读全文
posted @
2009-08-25 14:12
米高佐敦
阅读(1326)
推荐(0)
c# webform js文件获取客户端控件,后台cs获取前台客户端控件的值,c#和js的交互
摘要:aspx文件: Hidden2为客户端控件 Html代码 <%@PageLanguage="C#"AutoEventWireup="true"CodeFile="Default.aspx.cs"Inherits="_Default"%><!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.or...
阅读全文
posted @
2009-08-25 14:11
米高佐敦
阅读(699)
推荐(0)
c# asp.net 给一个图片打上水印,并且上传
摘要:usingSystem; usingSystem.Data; usingSystem.Configuration; usingSystem.Web; usingSystem.Web.Security; usingSystem.Web.UI; usingSystem.Web.UI.WebControls.WebParts; usingSystem.Web.UI.HtmlControls; using...
阅读全文
posted @
2009-08-25 14:08
米高佐敦
阅读(221)
推荐(0)
asp.net 导出 gridview 数据 excel 全部 当前页 选择行 选中行 所选行 复选框
摘要:按下保存按钮,可以选择保存当前行,当前页和全部记录#region保存 ///<summary> ///保存 ///</summary> protectedvoidbtnBC_Click(objectsender,EventArgse) { stringsave_cblJL=""; for(inti=0;i<this.cblJL.Items.Count;i++) { i...
阅读全文
posted @
2009-08-25 13:55
米高佐敦
阅读(667)
推荐(0)