摘要:
WebBrowser控件是基于IE浏览器的,所以它的内核功能是依赖于IE.code: class IEProxy { //设置代理选项 private const int INTERNET_OPTION_PROXY = 38; //设置代理类型 private co... 阅读全文
摘要:
POJO: class ComboBoxItem { string _text; string _value; public string Text { get { return _text; } set { _text = value; } } public... 阅读全文
摘要:
store是一个为Ext器件提供record对象的存储容器,行为和属性都很象数据表 方法:不列举继承来的方法 Store( Object config ) 构造,config定义为{ autoLoad : Boolean/Object, //自动载入 baseParams : Object, //只有使用httpproxy时才有意义 dat... 阅读全文
摘要:
错误信息: IE:SCRIPT1009: 缺少 '}' FF: SyntaxError: identifier starts immediately after numeric literal ..."id100", "statFlag":"0",stepList:[{"id":100step1,"jobId":100,"stepName":"100step...出现错误的Ext代码: ... 阅读全文
摘要:
在html中写入内容,并添加js private void btnTestJs_Click(object sender, EventArgs e) { this.webBrowser1.Navigate("about:blank"); this.webBrowser1.Document.Write("testBody");... 阅读全文