摘要:
using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.Collections;using System.Text;namespace Web{ public class... 阅读全文
摘要:
publicclassBook{privatestringname;publicstringName{get{returnname;}set{name=value;}}privateintyear;publicintYear{get{returnyear;}set{year=value;}}privateintprice;publicintPrice{get{returnprice;}set{price=value;}}publicBook(stringname,intyear,intprice){Name=name;Year=year;Price=price;}}publicclassCom 阅读全文
摘要:
用extjs搭的框架,在用ReportViewer展示报表。新建一个ShowReport.aspx页面来显示报表,然后引用这个页面。var iframePanel = new Ext.Panel({ style: 'padding:0px 0px 0px 5px;', border: false, html: ' <iframe id="leftIframe" width="100%" Height="458px" src="ShowReport.aspx" scrolling=&qu 阅读全文