摘要:
Inbound Rules.New Rule 阅读全文
摘要:
merge into sm_classes sc using (select * from ceibs_uv_embaclass) c on(sc.id = c.id) when matched then update set sc.classname=c.classname,sc.groupname=c.group_namewhen not matched then insert (sc.id,sc.classname,sc.groupname)values (c.id,c.classname,c.group_name) 阅读全文
摘要:
create table SM_COURSR_STUDENT as select * from table 阅读全文
摘要:
1.创建SEQUENCE(自增长列 与表无关)CREATE SEQUENCE "CEIADM_TASKS_SEQ" MINVALUE 1 MAXVALUE 99999999 INCREMENT BY 1 START WITH 1 NOCACHE 2.创建触发器,关联表CREATE OR REPLACE TRIGGER "INSERT_CEIADM_TASKS" BEFOREinsert on "CEIADM_TASKS"for each rowbeginselect "CEIADM_TASKS_SEQ".nextv 阅读全文
摘要:
ASP.Net处理Http Request时,使用Pipeline(管道)方式,由各个HttpModule对请求进行处理,然后到达 HttpHandler,HttpHandler处理完之后,仍经过Pipeline中各个HttpModule的处理,最后将HTML发送到客户端浏览 器中。 生命周期中涉及到几个非常重要的对象:HttpHandler,HttpModule,IHttpHandlerFactory,他们的执行(顺序)大致 的执行过程是这样的:client端发送页面请求,被IIS的某个进程截获,它根据申请的页 面后缀(.aspx)不同,调用不同的页面处理程序(.asp->asp.dl 阅读全文
摘要:
代码:importjavax.xml.namespace.QName;importorg.apache.axis.client.Call;importorg.apache.axis.client.Service;publicclassIPreventIndulge{publicbooleangetValidateInfo(StringUUid){try{Stringendpoint="http://game.qidian.com/RemoteWebService/IPreventIndulge.asmx";//创建一个服务(service)调用(call)Servicese 阅读全文
摘要:
SETANSI_NULLSONGOSETQUOTED_IDENTIFIERONGO--=============================================--Author:<liuwei>--Createdate:<2011-03-15>--Description:<道具系统日报表统计>--=============================================ALTERPROCEDURE[dbo].[sp_PropsReport_DaySync]ASBEGIN--循环读取TbApps里的数据--声明游标DECLARE 阅读全文
摘要:
ALTER TABLE TbPropsOrderDayReport ADD PersonCount int NOT NULL DEFAULT 0 阅读全文
摘要:
protectedvoidrptActiveCodesOfGame_ItemDataBound(objectsender,RepeaterItemEventArgse){DropDownListddl=e.Item.FindControl("ddlSelectServer")asDropDownList;if(ddl!=null){List<GameActiveCodeInfo>tempList=newList<GameActiveCodeInfo>();GameActiveCodeInfog=e.Item.DataItemasGameActiveC 阅读全文
摘要:
<scripttype="text/javascript">varGameActiveCode={pbatchId:0,GetActiveCodeDetail:function(controlId,spanNameShort){varddlBatchId=document.getElementById(controlId).valuevarcallBack=function(resultContent){if(resultContent!=null){varspanId="lbPrizeContent"+spanNameShort;docum 阅读全文