摘要:
using System;using System.Collections.Generic;using System.Text;using System.ComponentModel;using System.Runtime.CompilerServices;namespace NET.MST.Sixth.MultiEventsClass{ class MainClass { static voi... 阅读全文
摘要:
第一范式:关系模式中,每个属性不可再分。属性原子性第二范式:非主属性完全依赖于主属性,即消除非主属性对主属性的部分函数依赖关系。第三范式:非主属性对主属性不存在传递函数依赖关系。BNCF范式:在第三范式的基础上,消除主属性之间的部分函数依赖关系数据库设计之时是要遵守一定的规则的。尤其是数据库设计范式 现简单介绍1NF(第一范式),2NF(第二范式),3NF(第三范式)和BCNF,另有第四范式和第五... 阅读全文
摘要:
--建立客户信息表create table CustomInfo( cid nvarchar(20) not null primary key, cpassword nvarchar(30) not null check(len(cpassword)>=6), csum int not null default(0))goinsert into CustomInfo(cid,cpasswor... 阅读全文
摘要:
xml 文件为:<?xml version="1.0"?><configuration><configSections><section name="dataConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseSettings, Micr... 阅读全文
摘要:
微软为我们写好的一个底层,有兴趣的可以Copy// ===============================================================================// Microsoft Data Access Application Block for .NET// http://msdn.microsoft.com/library/en-us/d... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;using System.Net.Mail;using System.Net;namespace SendEmail{ class Program { static void Main(string[] args) { MailMessage mms = new Mail... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;using System.Messaging;namespace QueueTest{ class Program { static void Main(string[] args) { string path = @".\private$\test"; if (Mess... 阅读全文
摘要:
前台放两个Button 一个是提交,一个是查询后台:using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.W... 阅读全文
摘要:
前台放一个TextBox、一个Label、一个Button(value="注销")后台:using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;usi... 阅读全文
摘要:
function show(){ var filepath = document.getElementById("FileUpload"); var imagepath = document.getElementById("Image1"); imagepath.src = filepath.value;} 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;using System.Web;using System.Web.Security;using CrystalDecisions.CrystalReports.Engine;using CrystalDecisions.Shared;using System.IO; p... 阅读全文
摘要:
XMLHttpRequest对象是当今所有AJAX和Web 2.0应用程序的技术基础。尽管软件经销商和开源社团现在都在提供各种AJAX框架以进一步简化XMLHttpRequest对象的使用;但是,我们仍然很有必要理解这个对象的详细工作机制。 一、 引言 异步JavaScript与XML(AJAX)是一个专用术语,用于实现在客户端脚本与服务器之间的数据交互过程。这一技术的优点在于,它向开发者提供... 阅读全文
摘要:
<script language="javascript" type="text/javascript"> function selectAll(obj) { var theTable = obj.parentElement.parentElement.parentElement; var i ; var j = obj.parentElement.cellIndex; for(i =... 阅读全文
摘要:
解答: --1select * from students where sid in(select r_sid from sresult where r_cid=(select cid from Course where cname='税收基础'))--2select * from students where sid in(select r_sid from SResult where r_ci... 阅读全文
摘要:
<%@ WebHandler Language="C#" class="Handler" %>using System;using System.Web;public class Handler : IHttpHandler,System.Web.SessionState.IRequiresSessionState{ //private static System.Random ran... 阅读全文
摘要:
using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using ... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;using System.Reflection;namespace NET.MST.Sixth.ReflectionFactory{ /// <summary> /// 使用者 /// </summary> class Customer { sta... 阅读全文
摘要:
using System;using System.Security.Permissions;using System.Text;using System.Reflection;// Download by http://www.codefans.netnamespace UseReflection{ /// <summary> /// 这里的特性要求程序的运行需要完全信任的安全级别 ... 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;// Download by http://www.codefans.netnamespace NET.MST.Sixth.TraFactory{ /// <summary> /// 使用者 /// </summary> class Custome... 阅读全文
摘要:
#region 导出excel /// <summary> /// yinmin 导出panel控件中的内容到excel /// </summary> /// <param name="plOut"></param> public static void OutPutExcel(Panel plOut) { System.Web.HttpConte... 阅读全文