03Del.ashx(删除班级)】的更多相关文章

03Del.ashx 数据库里定义个BOOL型,TRUE表示正常FALSE表示删除 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using System.Web; namespace AspNetAshx { /// <summary> /// 班级删除页面 /// </summary> public class _0…
using System; using System.Collections.Generic; using System.Linq; using System.Web; using WebHelper; namespace AspxWebForm { /// <summary> /// 删除班级 /// </summary> public class _02Del : IHttpHandler { public void ProcessRequest(HttpContext con…
02Modify.html 修改 <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>修改班级</title> <style type=&…
C03ListStu.ashx 0:false(删除);1:true(正常). (数据库里定义个BOOL型,TRUE表示正常FALSE表示删除) <html> <head> <title> {@title} </title> <style type="text/css"> #tbList { border:1px solid #0094ff; width:300px; margin:10px auto; border-coll…
04Add.html <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>新增班级</title> <style type="t…
目的: 制作一个表格,显示班级的学生信息 功能: 鼠标移到不同行,背景色发生改变,离开恢复原背景色 添加.删除按钮,可添加,可删除. 程序流程: 首先先建立绑定事件函数. 其次建立鼠标移动改变背景色函数. 再编写添加行和列函数. 最后编写删除函数. HTML部分: <body> <table border="1" width="50%" id="table"> <tr> <th>学号</th&…
费了2个小时,才把原理弄懂,把问题逐个解决,当你发现你最后栽的那个点,是一个小石头拌的你,你起来是该哭还是该笑呢?只怪自己习武不精吧. 虽然问题都解决了,但是还有一个余留的问题就是鼠标经过input时,怎么修改背景颜色的问题. 这一节有点乱,虽然整理的代码编了问题序号.可我相信,再过几天自己回头看肯定还是一头雾水. so,附上具体问题网址:http://www.imooc.com/code/1636 以下是html整件 <!DOCTYPE html><html> <head&…
01List.html <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></title> <style type="text…
CREATE TABLE STUDENT( --创建学生表  ID NUMBER(10) PRIMARY KEY,   --主键ID  SNAME VARCHAR2(20),  CLASSNAME VARCHAR2(20) --班级ID ); INSERT INTO STUDENT VALUES(1,'Tom',1);INSERT INTO STUDENT VALUES(2,'Jack',1);INSERT INTO STUDENT VALUES(3,'Bay',2);INSERT INTO S…
必须声明:此博客转载于Oracle外键级联删除和级联更新http://www.2cto.com/database/201507/417496.html 鉴于此前收藏的精彩博客无料被删除了,很是痛心,所以还是要复制一下 一.级联删除 Oracle在外键的删除上有NO ACTION(类似RESTRICT).CASCADE和SET NULL三种行为. 下面以学生-班级为例说明不同情况下的外键删除,学生属于班级,班级的主键是学生的外键. -- 班级表 CRATE TABLE TB_CLASS ( ID…