摘要:
Repeater控件和DataList控件,可以用来一次显示一组数据项。比如,可以用它们显示一个数据表中的所有行。 Repeater控件完全由模板驱动,提供了最大的灵活性,可以任意设置它的输出格式。 DataList控件也由模板驱动,和Repeater不同的是,DataList默认输出是HT... 阅读全文
摘要:
select 标签 form提交的时候 提交select标签选中的value值1. 添加项 $("#select_id").append("Text"); //添加一项option $("#select_id").prepend("请选择"); //在前面插入一项option2. 删除项 $... 阅读全文
摘要:
在一般事务处理页面,可以轻松的得到 Request,Response对象,从而进行相应的操作,如下:HttpRequest Request = context.Request;HttpResponse Response = context.Response;但是要得到 Session的值就没有那么简... 阅读全文
摘要:
RanDom如何提高生成随机数的随机性一个在线考试系统的项目,需要从题库中随机抽取试题,但是如果直接 Random ran=new Randon(),ran.Next(nummin,nummax);的方法,在系统执行过快的情况下,造成只取到了一系列连续的题目,其他的题目均没有取到,用下面提高随机数种... 阅读全文
摘要:
using System; using System.Data; using System.Xml; using System.Data.SqlClient; using System.Collections; using System.Configuration; namespace Web { 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Data;using System.Text;using System.Data.Common;using Sy... 阅读全文