摘要:Chart控件中数据点与Grid列表交互分为:1、点击Chart控件中数据点时,选中Grid列表中相应行;2、选中Grid列表汇总相应行,选中Chart控件中相应数据点3、控制相应数据线的显示前台Chart源码 1 <asp:Chart ID="chAnalysis" Width="1025px" runat="server" BackGradientStyle="TopBottom" 2 BackSecondaryColor="White" BackColor="WhiteSm
阅读全文
12 2012 档案
摘要:oracle批量操作:语法begin end上代码:UPDATE_IS_DEFLUAT 1 public static string UPDATE_IS_DEFLUAT = " UPDATE NEORULE SET ISDEFAULT=:ISDEFAULT{0} WHERE ID=:ID{0}";前台代码 1 Dictionary<string, string> dict = new Dictionary<string, string>(); 2 if (this.gv_Menu.Rows.Count <= 0) { return; } 3 f
阅读全文
摘要:MsChart中添加、删除Series前台 1 <asp:Panel ID="panelch" runat="server" Visible="false" Style="margin-top: 99px; margin-left: 10px;"> 2 <asp:Chart ID="chAnalysis" Width="1025px" runat="server" BackGradientStyle="TopBottom&quo
阅读全文
摘要:OCI-22053: 溢出错误原来sql语句如下: 1 select avg(str.result_value), 2 avg(str.result_value) + stddev(str.result_value) sd1, 3 avg(str.result_value) + stddev(str.result_value) * 2 sd2, 4 avg(str.result_value) - stddev(str.result_value) sd3, 5 avg(str.result_value) - stddev(str.resul...
阅读全文
摘要:经常遇见数据统计图,要求有Y副轴,统计图如下:MSCHART源代码MSCHART源代码 1 <asp:Chart ID="Chart1" runat="server" Width="700px" Height="300px"> 2 <Series> 3 <asp:Series Name="Series1" ChartType="Column" BorderWidth="1" ShadowOffset="1"
阅读全文
摘要:提供一个接口能够下订单接口传入相应订单信息,如果下单成功返回订单编码,失败返回失败原因可以把参数设置为datatable,也可以设置为xml内容字符串xml文件格式 1 <?xml version="1.0" encoding="utf-8"?> 2 <root> 3 <entity> 4 <actions> 5 <action> 6 <command>CREATE_ORDER</command> 7 <parameter name="userID&quo
阅读全文
摘要:源代码 1 <div id="icaption"> 2 <div id="title"> 3 XML配置管理 4 </div> 5 <a id="btn_add" title="添加菜单" runat="server" href="AddSampleXml.aspx"></a> 6 </div> 7 <div id="itable"> 8 <asp:GridView
阅读全文