2016年11月2日

摘要: 前台定义一个DIV,用来绑定和显示答题卡的内容 <div id="AnswerSheet" runat="server" style="height:450px; overflow:auto; "> </div> 后台通过 AnswerSheet 绑定答题卡 1 public void InitSu 阅读全文
posted @ 2016-11-02 19:57 努力向上的小蜗牛 阅读(597) 评论(0) 推荐(0) 编辑

2016年10月24日

摘要: 1 CREATE PROCEDURE [dbo].[Proc_PX_Situation] 2 @BMDateFrom nvarchar(50), --报名时间 从 3 @BMDateEnd nvarchar(50), --报名时间 到 4 @BenlonFenJu nvarchar(50) --所属 阅读全文
posted @ 2016-10-24 11:52 努力向上的小蜗牛 阅读(2340) 评论(0) 推荐(0) 编辑
 
摘要: 1 CREATE PROCEDURE [dbo].[Proc_PX_Practice] 2 @PageSize int, --每页多少个 3 @CurrPage int --当前页 4 5 AS 6 begin 7 create table #temp_table( 8 Row_ID int ide 阅读全文
posted @ 2016-10-24 11:50 努力向上的小蜗牛 阅读(6347) 评论(0) 推荐(1) 编辑
 
摘要: 1 /****** Object: StoredProcedure [dbo].[CBM_ProjectInfo_BudgetInfo] Script Date: 2016/10/20 16:10:06 ******/ 2 SET ANSI_NULLS ON 3 GO 4 5 SET QUOTED_ 阅读全文
posted @ 2016-10-24 11:49 努力向上的小蜗牛 阅读(172) 评论(0) 推荐(0) 编辑

2016年10月16日

摘要: 验证 1 function AddPersonClick() { 2 if (Check() == true) { 3 sum = sum + 1; 4 $("[id$='hid_sum'").val(sum); 5 //alert(sum); 6 var logint = $('input:rad 阅读全文
posted @ 2016-10-16 11:21 努力向上的小蜗牛 阅读(670) 评论(0) 推荐(0) 编辑
 
摘要: 后台传JSON 1 public class CourseType : IHttpHandler 2 { 3 Epoint.PeiXun.Bizlogic.BLL.CourseLibrary.PX_CourseType.B_PX_CourseType b_coursetype = new Epoin 阅读全文
posted @ 2016-10-16 11:15 努力向上的小蜗牛 阅读(7511) 评论(0) 推荐(0) 编辑
 
摘要: 前台 1 function BMSure() { 2 var DanWeiName = $("[id$='BusinessName']").val(); 3 var Address = $("[id$='Address']").val(); 4 if ((DanWeiName != "") && ( 阅读全文
posted @ 2016-10-16 11:11 努力向上的小蜗牛 阅读(6080) 评论(0) 推荐(0) 编辑
 
摘要: 前台定义按钮 1 <epoint:WebToolBar runat="server" ID="WebToolBar1" AddTarget="top" RelationName="培训信息" 2 EnableUpdate="false" OnCommandClick="WebToolBar1_Com 阅读全文
posted @ 2016-10-16 11:00 努力向上的小蜗牛 阅读(133) 评论(0) 推荐(0) 编辑
 
摘要: 一个DataGrid里有两张表的数据,导出成一张表 1 protected void btnExcel_Click(object sender, EventArgs e) 2 { 3 InfoExport(); 4 } 5 6 protected void InfoExport() 7 { 8 tr 阅读全文
posted @ 2016-10-16 10:54 努力向上的小蜗牛 阅读(628) 评论(0) 推荐(0) 编辑
 
摘要: 两张表导入到一个DataGrid里面(题目表和答案表) 前台代码 1 <asp:Content ID="Content1" ContentPlaceHolderID="cphToolBar" runat="server"> 2 <epoint:Button ID="btnImport" runat= 阅读全文
posted @ 2016-10-16 10:47 努力向上的小蜗牛 阅读(250) 评论(0) 推荐(0) 编辑