第1章 在线考试系统

Size: px
Start display at page:

Download "第1章 在线考试系统"

Transcription

1 ASP+SQL Server ASP

2 ASP Web

3 IIS SQL Server IIS SQL Server

4 SQL IIS SQL Server IIS SQL Server

5 IIS SQL Server IIS SQL Server JavaScript JavaScript

6 IIS SQL Server IIS SQL Server IIS SQL Server IIS SQL Server

7 ASP SQL IIS SQL Server IIS SQL Server JavaScriptindexof VBScript ASP

8 IIS SQL Server IIS SQL Server JMail IIS SQL Server IIS SQL Server

9 ASP

10 VBScript BOF EOF Randomize timeout Session

11 1.1 Intern Internet Internet Web Web B/S Browser/Web/DataBase Browser/Server B/S Web Web Server Browser/Server PresentatioonB Data Service Web Web Web Web HTTP Web IE

12 Web Web SQL Web Web Web Web SQL SERVER2000 Browser/Server B/S

13

14

15 SQL Server2000 SQL Server2000 test test 1.1 admin student examination test rightorwrong selecting filling 1.1 test SQL Server Windows 1 admin1.2 adminadminpassword 2 SQL Server test admin admin adminpasswordadmin Primary admin admin nvarchar 10 adminpassword nvarchar 6 2student 1.3 studentname (studentpassword)sex class studentnumber registerdata 6 studentnumber student studentnumber nvarchar 8 studentname nvarchar 10 studentpassword nvarchar 6 sex char 2 class nvarchar 30 registerdata smalldatetime

16 3examination 1.4 examinationid studentnumber score examinationdata pass makeup makeupdata 7 examinationid studentnumber Pass 0 makeup examination examinationid int studentnumber nvarchar 8 score int examinationdata smalldatetime pass bit makeup int makeupdata smalldatetime 4test 1.5 examinationid rightorwrongid rightorwrongscore selectidselectscore fillingscore setupdata 8 examinationid examinationid test examinationid int rightorwrongid int rightorwrongscore int selectid int selectscore int fillingid int fillingscore int setupdata smalldatetime 5 rightorwrong 1.6 rightorwrongid question answer setupdata 4 rightorwrongid rightorwrongid rightorwrong rightorwrongid int question nvarchar 250 answer bit setupdata smalldatetime 6 selecting1.7

17 4 selectid question 1 Result1 2 Result2 3 Result3 4 Result4 answer setupdata 8 selectid selectid selecting selectid int question nvarchar 250 result1 nvarchar result2 nvarchar result3 nvarchar result4 nvarchar answer nvarchar 100 setupdata smalldatetime 7 filling1.8 f question answer setupdata 4 fillingid fillingid filling fillingid int question nvarchar 250 answer nvarchar 250 setupdata smalldatetime 8 examination test student examination examinationid test examination examination studentnumber student studentnumber SQL Server 1.6

18 1.6 PK FK NULL

19

20

21

22

23

24 IIS SQL Server IIS IIS Internet Information Server Internet WEB FTP Mail Windows 2000 WEB IIS Windows 2000 Windows 9x/Me IIS PWSWEB 1 Windows XP IIS 10 IIS Windows IIS 1 2 / Windows Windows 3 Internet IIS 1 2 Internet Internet zxks

25 6 d:\software\zxks Internet SQL Server SQL Server test 1.23

26 1.24 conn.asp <!--#include file="conn.asp"--> <% Set conn = Server.CreateObject("ADODB.Connection") conn connstr="provider=sqloledb;data Source=(local);Initial Catalog=test;User ID=sa;Password=yanyan;" recordset conn.open connstr firework jpg gif top.htm index.asp 1.25

27 (top.htm) <!--#include file="top.htm"--> images <img border="0" src="images/2.gif" width="778" height="167"></td> Login.asp 1.27

28 a a 1 3 b b 3 5 c c 2 2 student pwd Pwd type password * onclick onclick="check()" 1 ASP ASP session <!--#include file="conn.asp"--> <% conn.asp javascript check() // javascript check() <script language=javascript> function check() { // student if (document.form1.student.value=="") {alert(" "); document.form1.student.focus(); // student return false;} // IE // pwd t if (document.form1.pwd.value=="") {alert(" "); document.form1.pwd.focus(); // pwd return false;} // IE // ctype, ctype add document.form1.ctype.value="add"; document.form1.submit(); // form1 } </script> vbscript student session.timeout= ctype "ctype" add session if trim(request("ctype"))="add" then

29 session("student")="" session("classes")="" session("id")="" session("number")="" session("sex")="" sql="select * from student where studentname='"&trim(request("student"))&"' and studentpassword='"&trim(request("pwd"))&"'" sql set rs=conn.execute(sql) sql javascript, if rs.eof then <script language=javascript> alert(" "); </script> <% vbscript session else session("student")=rs("studentname") session("classes")=rs("class") session("number")=rs("studentnumber") session("sex")=rs("sex") session("timen")=now <script language=javascript> //javascript index.asp var now=new Date() //index.asp IEhistory window.navigate("index.asp?time="+now.gettime()); </script> <%end if end if 2 <html>... <!--#include file="top.htm"--> <% top.htm <table border="0" cellpadding="4" style="border-collapse: collapse" bordercolor="#111111" width="778" height="100"> <% a <tr> <td align="center"> <table border="0" width="100%" id="table1"> <% b <form name=form1 action=""> <input type="hidden" name="ctype" > <% <table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="300" id="table2"> <% c <input type="text" name="student" size="20" class="line" style="border-style:solid; border-width:1px; padding:1px; height:22"></td> <% <input type="password" name="pwd" size="20" class="line" style="height: 22; border-style: solid; border-width: 1px"></td> <% <input type="button" value="" name="b1" onclick="check()"

30 class="line" style="width: 60; height: 22; border-style: solid; border-width: 1px; background-color: #FFFFFF"> <input type="reset" value=" " name="b2" class="line" style="width: 60; height: 22; border-style: solid; border-width: 1px; background-color: #FFFFFF"></td> <% <td><a href="register.asp"> </a></td> <% <td><a href="admin/index.asp"> </a></td> <% <td><img border="0" src="images/login.jpg" width="299" height="289"></td> <% </html> top2.htm register.asp (top2.htm) top file="top2.htm"--> 1.28 <!--#include 1.28 top.htm src=" images/2.jpg" src=" images/7.jpg" (register.asp) 1.29

31 a a 6 3 b 1 ASP ASP <!--#include file="conn.asp"--> <% conn.asp javascript check() <script language=javascript> function check() { if (document.form1.student.value=="") // {alert(" "); // document.form1.student.focus(); // return false; // IE } if (document.form1.pwd.value=="") // {alert(" "); // document.form1.pwd.focus(); // return false; // IE } if (document.form1.classes.value=="") // {alert(" "); // document.form1.classes.focus(); // return false; // IE } if (document.form1.number.value=="") // {alert(" "); // document.form1.number.focus(); // return false; // IE } // ctype, ctype add document.form1.ctype.value="add"; document.form1.submit(); // form1 } </script> vbscript javascript ctype "ctype" add

32 if trim(request("ctype"))="add" then sqlfind="select * from student where studentnumber='"&trim(request("number"))&"'" sql set rsfind=conn.execute(sqlfind) sql if not rsfind.eof then student <script language=javascript> //javascript alert(""); </script> vbscript student javascript login.asp else sqlin="insert into student (studentname,studentpassword,sex,class,studentnumber) values('"&trim(request("student"))&"','"&trim(request("pwd"))&"','"&trim(req uest("sex"))&"','"&trim(request("classes"))&"','"&trim(request("number"))&"' )" sqlstudent set rs=conn.execute(sqlin) sql login.asp <script language=javascript>//javascript alert(" "); window.navigate("login.asp"); </script> <% end if end if 2 <html>... <!--#include file="top2.htm"--> <% top2.htm <form name=form1 action=""> <% <input type="hidden" name="ctype"> <input type="text" name="student" size="20" style="height: 22; border-style: solid; border-width: 1px" class="line"></td> <td width="200"> (*)</td> <select name="sex" size="1" style="border: 1px solid #000000" class="line"> <option value=" "> </option> <option value=" "> </option> </select> <input type="password" name="pwd" size="20" style="height: 22; border: 1px solid #000000" class="line"></td> <td> (6 )</td> <input type="text" name="classes" size="20" style="height: 22; border: 1px solid #000000"></td> <input type="text" name="number" size="20" style="height: 22; border:

33 1px solid #000000"></td> <input type="button" value=" " name="b1" onclick="check()" style="height: 22; width: 60; border-style: solid; border-width: 1px; background-color: #FFFFFF" class="line"> <input type="reset" value=" " name="b2" style="width: 60; height: 22; border-style: solid; border-width: 1px; background-color: #FFFFFF"></td> <% </tr> </table></form> </html> ASP ASP session <!--#include file="conn.asp"--> <% conn.asp javascript check() <script language=javascript> function check() {if (document.form1.id.value=="") // id {alert (" "); // document.form1.id.focus(); // id return false;} // IE if (document.form1.pwd.value=="") // pwd {alert (" "); // document.form1.pwd.focus(); // pwd return false;} // IE document.form1.ctype.value="types";// ctype, ctype add document.form1.submit(); // form1

34 } </script> vbscript session admin.asp if request("ctype")="types" then sqlfind="select * from admin where admin='"&trim(request("id"))&"' and adminpassword='"&trim(request("pwd"))&"'" sqladmin set rs=conn.execute (sqlfind) sql admin admin.asp if rs.eof then <script language=javascript> //javascript alert(""); history.back(); // </script> <% else session("adminid")=rs("admin") admin <script language=javascript> window.navigate("admin.asp"); admin.asp </script> <%end if else 2 <html> <form name=form1 action=""> <% <input type=hidden name=ctype > <input type="text" name="id" size="20" style="height: 22; border-style: solid; border-width: 1px"></td> </tr> <input type="text" name="pwd" size="20" style="height: 22; border-style: solid; border-width: 1px"></td> <input type="button" value="" name="b1" onclick="check()" style="width: 60; height: 22; border-style: solid; border-width: 1px; background-color: #FFFFFF"> <input type="reset" value="" name="b2" style="width: 60; height: 22; border-style: solid; border-width: 1px; background-color: #FFFFFF"></td> <% </form> <%end if

35 JavaScript indexof

36

37 SQL Server2000 SQL Server2000 tsgl tsgl 6.1 admin borecorder 1 admin tsgl id username password 3 SQL Server admin id Primary Key 1

38 admin ID int username nvarchar 50 password nvarchar 50 2 borecorder 6.3 id name bo_total bo_dep bo_owner bo_time bo_retime bo_flag return_time bo_remark 10 id Primary Key 1 1 bo_flag borecorder bo_id int bo_name nvarchar 50 bo_total int bo_dep nvarchar 50 bo_owner nvarchar 50 bo_time smalldatetime bo_retime smalldatetime bo_flag int return_time smalldatetime bo_remark nvarchar go

39

40 IIS SQL Server IIS SQL Server Microsoft SQL Server tsg conn.asp <!--#include file="inc/conn.asp"--> <% Set conn = Server.CreateObject("ADODB.Connection") connstr="provider=sqloledb;data Source=work;Initial Catalog=tsg;User ID=sa;Password=sa;" conn.open connstr default.asp 6.9

41 6.9 <html> 1 main main1 A:link A:active A:visited A:hover <STYLE type=text/css>.main { FONT-SIZE: 12px }.main1 { FONT-SIZE: 9pt }.main2 { FONT-SIZE: 16px }.main3 { FONT-SIZE: 7px }.main4 { FONT-SIZE: 10px } A:link { COLOR: #ffffff; TEXT-DECORATION: none } A:visited { COLOR: #ffffff; TEXT-DECORATION: none } A:active { COLOR: #ff0000; TEXT-DECORATION: none } A:hover { COLOR: #aa0000; TEXT-DECORATION: underline } </STYLE>

42 <!--#include file="conn.asp"--> <% conn.asp 2 <% set rs=server.createobject("adodb.recordset") recordset sqltext="select * from borecorder where bo_flag=0 order by bo_retime asc" borecorder bo_flag 0 rs.open sqltext,conn,1,1 sql MaxPerPage dim MaxPerPage MaxPerPage=20 20 'showpages If rs.eof and rs.bof then call showpages response.write "<p align='center'><font color='#ff0000'> </font></p>" response.end End if ', dim text,checkpage text=" " Rs.PageSize=MaxPerPage for i=1 to len(request("page")) checkpage=instr(1,text,mid(request("page"),i,1)) if checkpage=0 then exit for end if next Cur 1 CurrentPage CurrentPage 1 If checkpage<>0 then If NOT IsEmpty(request("page")) Then CurrentPage=Cint(request("page")) If CurrentPage < 1 Then CurrentPage = 1 If CurrentPage > Rs.PageCount Then CurrentPage = Rs.PageCount Else CurrentPage= 1 End If borecorder If not Rs.eof Then Rs.AbsolutePage = CurrentPage end if Else CurrentPage=1 End if call showpages showpages call list list If Rs.recordcount > MaxPerPage then call showpages end if 4list

43 list Sub list() <form method='post' action='search.asp'> <% <% <input type="button" value="" onclick=" window.location='add_info.asp'" style="font-family:,, Arial; font-size: 9pt; height:20px;background-color:#d4d0c8;" onmouseover ="this.style.backgroundcolor='#ffc864'" onmouseout ="this.style.backgroundcolor='#d4d0c8'"> <input type="button" value="" onclick=" window.location='info_check.asp'" style="font-family:,, Arial; font-size: 9pt; height:20px;background-color:#d4d0c8;" onmouseover ="this.style.backgroundcolor='#ffc864'" onmouseout ="this.style.backgroundcolor='#d4d0c8'"> <input type="button" value="" onclick=" window.location='old.asp'" style="font-family:,, Arial; font-size: 9pt; height:20px;background-color:#d4d0c8;" onmouseover ="this.style.backgroundcolor='#ffc864'" onmouseout ="this.style.backgroundcolor='#d4d0c8'"> <% <select name='class' size='1' tabindex='0' style="font-size: 9pt"> <option value=' '> </option> <option value=''></option> <option value=' '> </option> <option value=' '> </option> <option value=' '> </option> <option value=''></option> <option value=''></option> <option value=''></option> <option value=''></option> </select> <% <input type='text' name='name' size='11' onmouseover = "this.style.backgroundcolor = '#E5F0FF'" onmouseout = "this.style.backgroundcolor = ''" style="font-family:,, Arial; font-size: 9pt; height:18px;background-color:#f3f3f3;border:1 solid black"> <% <input type='submit' value='' name='submit' style="font-family:,, Arial; font-size: 9pt; height:20px;background-color:#d4d0c8;" onmouseover ="this.style.backgroundcolor='#ffc864'" onmouseout ="this.style.backgroundcolor='#d4d0c8'"> <% if not rs.eof then borecorder i=0 i0 do while not rs.eof <tr class=main1> <td width="6%" align="center" height="23"><%=rs("bo_id")</td> <td width="18%" align="center" height="23"><%=rs("bo_name")</td> <td width="8%" align="center" height="23"><%=rs("bo_total")</td>

44 <td width="10%" align="center" height="23"><%=rs("bo_dep")</td> <td width="11%" align="center" height="23"><%=rs("bo_owner")</td> <td width="13%" align="center" height="23"><%=rs("bo_time")</td> <td width="13%" align="center" height="23"><%=rs("bo_retime")</td> <td width="9%" align="center" height="23"><a href="#" title=<%=rs("bo_remark")><font color="#000000"><u></u></font></a></td> <td width="9%" align="center" height="23"><%if DateDiff("d", rs("bo_retime"), date())<0 then 0<%else<font color=red><%=datediff("d", rs("bo_retime"), date())</font><%end if</td> </tr> <% i=i+1 if i >= MaxPerpage then exit do rs.movenext loop end if <% End sub rs.close conn.close </form> <% 5showpages showpages sub showpages() <% response.write "<form method=post action='default.asp'>" <% Response.write "<font color='#000000'>-</font>" If currentpage > 1 Then response.write "<a href='default.asp?&page="+cstr(1)+"'><font color='#000000'></font></a><font color='#000000'><b>-</b></font>" Response.write "<a href='default.asp?page="+cstr(currentpage-1)+"'><font color='#000000'> </font></a><font color='#000000'><b>-</b></font>" Else Response.write "<font color='#000000'>-</font>" Response.write "<font color='#000000'>-</font>" End if If currentpage < Rs.PageCount Then Response.write "<a href='default.asp?page="+cstr(currentpage+1)+"'><font color='#000000'> </font></a><font color='#000000'><b>-</b></font>"

45 Response.write "<a href='default.asp?page="+cstr(rs.pagecount)+"'><font color='#000000'> </font></a> " Else Response.write "<font color='#000000'> -</font>" Response.write "<font color='#000000'> </font> " End if Response.write "<font color='#000000'> :</font>" & "<font color=#ff0000>" & Cstr(CurrentPage) & "</font>" & "<font color='#000000'>/" & Cstr(rs.pagecount) & "</font> " Response.write "<font color=#ff0000>" & Cstr(MaxPerPage) & "</font>" & "<font color='#000000'> / &nbsp" & " </font>" & "<font color=#ff0000>" & Cstr(Rs.RecordCount) & "</font>" & "<font color='#000000'> </font> " response.write "</td><td align='right'>" response.write "<font color='#ffffff' class=main1> </font><input type='text' name='page' size=4 maxlength=4 class=smallinput value="&currentpage&"> " response.write "<input class=buttonface type='submit' value='go' name='cndok' style='background-color: #e1f0ff'></span> " </form> <%end sub </body> </html> default.asp Search.asp <%@ LANGUAGE="VBSCRIPT" <!--#include file="conn.asp" --> <% conn.asp 1 SQL <%

46 bo_class Class bo_class=request("class") bo_name name bo_name=request("name") set rs=server.createobject("adodb.recordset") recordset borecorder sqltext="select * from borecorder " bo_class bo_name name bo_flag bo_retime if bo_class=" " then sqltext=sqltext &" where bo_name like '%"& request("name") &"%' and bo_flag=0 order by bo_retime asc" elseif bo_class="" then bo_class bo_ name owner bo_flag bo_retime sqltext=sqltext &" where bo_owner like '%"& request("name") &"%' and bo_flag=0 order by bo_retime asc" elseif bo_class=" " then bo_class bo_ name dep bo_flag bo_retime sqltext=sqltext &" where bo_dep like '%"& request("name") &"%' and bo_flag=0 order by bo_retime asc" elseif bo_class=" " then bo_class bo_ name total bo_flag bo_reti sqltext=sqltext &" where bo_total ="& request("name") &" and bo_flag=0 order by bo_retime asc" elseif bo_class=" " then bo_class bo_flag bo_reti sqltext=sqltext &" where datediff('d', bo_retime, date()) >= "& request("name") &" and bo_flag=0 order by bo_retime asc" elseif bo_class="" then bo_class name bo_flag bo_retime sqltext=sqltext &" where datediff('d', bo_time, # "&request("name")& "#) >0 and bo_flag=0 order by bo_retime asc" elseif bo_class="" then bo_class name bo_flag bo_retime sqltext=sqltext &" where datediff('d',# "&request("name")& "#, bo_time ) >0 and bo_flag=0 order by bo_retime asc" elseif bo_class="" then bo_class name bo_flag bo_retime sqltext=sqltext &" where datediff('d', bo_retime, # "&request("name")& "#) >0 and bo_flag=0 order by bo_retime asc" elseif bo_class="" then bo_class "name bo_flag bo_retime sqltext=sqltext &" where datediff('d', bo_retime, # "&request("name")& "#) <0 and bo_flag=0 order by bo_retime asc" end if rs.open sqltext,conn,1,1 sql 2 html html

47 <html> <% main main1 A:link A:active A:visited A:hover <STYLE type=text/css>.main { FONT-SIZE: 12px }.main1 { FONT-SIZE: 9pt } 2 <% dim MaxPerPage MaxPerPage MaxPerPage=20 20 'showpages If rs.eof and rs.bof then call showpages response.write "<p align='center'><font color='#ff0000'> </font></p>" response.end End if ', dim text,checkpage text=" " Rs.PageSize=MaxPerPage for i=1 to len(request("page")) checkpage=instr(1,text,mid(request("page"),i,1)) if checkpage=0 then exit for end if next Login.htm 6.11

48 6.11 <html> <% main main1 A:link A:active A:visited A:hover <STYLE type=text/css>.main { FONT-SIZE: 12px }.main1 { FONT-SIZE: 14px }.main2 { <FORM language=javascript name=form1 action=check.asp method=post> <% <% <TD class=main1 width=120 height=25><input maxlength=16 size=13 name=uid style="font-size: 14px"> </TD> <% <TD class=main1 width=120 height=25 bgcolor="#e1f0ff"><input maxlength=16 size=15 name=pwd type="password" style="font-size: 9pt"> </TD> <% <DIV align=center><input class=main type=submit size=3 value= name=submit2> </DIV></TD></TR></TBODY></TABLE> </form> </body> </html>

49

RUN_PC連載_10_.doc

RUN_PC連載_10_.doc PowerBuilder 8 (10) Jaguar CTS ASP Jaguar CTS PowerDynamo Jaguar CTS Microsoft ASP (Active Server Pages) ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar CTS ASP Jaguar Server ASP

More information

5-1 nav css 5-2

5-1 nav css 5-2 5 HTML CSS HTML CSS Ê Ê Ê Ê 5-1 nav css 5-2 5-1 5 5-1-1 5-01 css images 01 index.html 02 5-3 style.css css 03 CH5/5-01/images 04 images index.html style.css 05

More information

A-1 HTML A-1-1 HTML 1 HTML JSP HTML HTML HTML JSP A HTML HTML HTML HTML HTML HTML HTML HTML.htm.html HTML Windows NotePad HTML IE [ / ] NotePad A-2

A-1 HTML A-1-1 HTML 1 HTML JSP HTML HTML HTML JSP A HTML HTML HTML HTML HTML HTML HTML HTML.htm.html HTML Windows NotePad HTML IE [ / ] NotePad A-2 HTML A-1 HTML A-2 A-2 HTML A-8 A-3 A-14 A-4 A-26 A-5 A-30 A-6 A-42 A-1 HTML A-1-1 HTML 1 HTML JSP HTML HTML HTML JSP A HTML HTML HTML HTML HTML HTML HTML HTML.htm.html HTML Windows NotePad HTML IE [ /

More information

F477

F477 FrontPage & Flash 連 CSIE, NTU September 15, 2007 Outline September 15, 2007 Page 2 連 FrontPage September 15, 2007 Page 3 連 FTP Email FrontPage HTML tag September 15, 2007 Page 4 連 September

More information

untitled

untitled 12-1 -2 VC# Web Blog 12-1 -1-1 12-1.1-1 C:\ ChartModuleSample_CSharp\Application\2001\ Files\ 4096 KB 120 Web.Config httpruntime maxrequestlength executiontimeout 12-2

More information

Microsoft Word - A201101-1519.doc

Microsoft Word - A201101-1519.doc 5 10 15 20 25 30 基 于 ASP+ACCESS 的 辽 宁 工 程 技 术 大 学 考 试 网 的 设 计 与 开 发 董 强 1, 宋 喜 义 2 2**, 黄 培 泉 (1. 辽 宁 工 程 技 术 大 学 安 全 科 学 与 工 程 学 院, 辽 宁 阜 新 123000; 2. 辽 宁 工 程 技 术 大 学 实 验 实 训 中 心, 辽 宁 阜 新 123000) 摘 要

More information

epub 61-2

epub 61-2 2 Web Dreamweaver UltraDev Dreamweaver 3 We b We b We Dreamweaver UltraDev We b Dreamweaver UltraDev We b We b 2.1 Web We b We b D r e a m w e a v e r J a v a S c r i p t We b We b 2.1.1 Web We b C C +

More information

p.2 1 <HTML> 2 3 <HEAD> 4 <TITLE> </TITLE> 5 </HEAD> 6 7 <BODY> 8 <H3><B> </B></H3> 9 <H4><I> </I></H4> 10 </BODY> </HTML> 1. HTML 1. 2.

p.2 1 <HTML> 2 3 <HEAD> 4 <TITLE> </TITLE> 5 </HEAD> 6 7 <BODY> 8 <H3><B> </B></H3> 9 <H4><I> </I></H4> 10 </BODY> </HTML> 1. HTML 1. 2. 2005-06 p.1 HTML HyperText Mark-up Language 1. HTML Logo, Pascal, C++, Java HTML 2. HTML (tag) 3. HTML 4. HTML 1. HTML 2. 3. FTP HTML HTML html 1. html html html cutehtmleasyhtml 2. wyswyg (What you see

More information

一 個 SQL Injection 實 例 的 啟 示 頁 2 / 6 因 此, 在 知 名 網 站 上 看 到 SQL Injection, 讓 人 驚 心, 卻 不 意 外 網 站 專 案 外 包 是 目 前 業 界 的 常 態, 而 在 價 格 取 勝 的 制 度 下, 低 價 得 標 的 S

一 個 SQL Injection 實 例 的 啟 示 頁 2 / 6 因 此, 在 知 名 網 站 上 看 到 SQL Injection, 讓 人 驚 心, 卻 不 意 外 網 站 專 案 外 包 是 目 前 業 界 的 常 態, 而 在 價 格 取 勝 的 制 度 下, 低 價 得 標 的 S 一 個 SQL Injection 實 例 的 啟 示 頁 1 / 6 你 的 網 站 在 裸 奔 嗎? 一 個 SQL Injection 實 例 的 啟 示 作 者 : 李 明 儒 SQL Injection( 資 料 隱 碼 攻 擊 ) 問 題 早 就 不 是 什 麼 新 聞, 但 前 陣 子 在 一 個 頗 具 知 名 度 的 活 動 網 站 上, 赫 然 發 現 它 大 刺 刺 地 現 身!

More information

Microsoft Word - A200904-291.doc

Microsoft Word - A200904-291.doc 基 于 Access 的 学 生 成 绩 查 询 系 统 的 设 计 田 立 坤 中 国 矿 业 大 学 ( 南 湖 校 区 ) 计 算 机 学 院 信 科 系, 江 苏 徐 州 (221008) Email:tianlikun1111@126.com 摘 要 : 数 据 库 技 术 是 现 代 企 业 管 理 自 动 化 的 重 要 而 关 键 的 环 节, 在 日 益 信 息 化 办 公 电 脑

More information

F477

F477 FrontPage & Flash 連 CSIE, NTU September 15, 2007 Outline September 15, 2007 Page 2 F477 September 15, 2007 Page 3 September 15, 2007 Page 4 September 15, 2007 Page 5 連 September 15, 2007 Page 6 連 September

More information

05 01 accordion UI containers 03 Accordion accordion UI accordion 54

05 01 accordion UI containers 03 Accordion accordion UI accordion 54 jquery UI plugin Accordion 05 01 accordion UI containers 03 Accordion accordion UI accordion 54 05 jquery UI plugin 3-1

More information

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费 助 理 电 子 商 务 考 试 真 题 试 题 第 一 部 分 : 理 论 部 分 一 单 项 选 择 题 1 ( B ) 是 信 息 系 统 的 核 心 组 成 部 分 A 逻 辑 模 型 B 数 据 库 C 概 念 模 型 D 以 上 全 部 2 ping www.163.com -t 中 参 数 t 的 作 用 是 :( A ) A 进 行 连 续 测 试 B 在 新 窗 口 中 显 示 C

More information

Yih-Chuan Lin Tsung-Han Wu Hsin-Te Wu Hsiao-Hui Hsu Department of Computer Science and Information Engineering Shu-Te University

Yih-Chuan Lin Tsung-Han Wu Hsin-Te Wu Hsiao-Hui Hsu Department of Computer Science and Information Engineering Shu-Te University 2003 6 Yih-Chuan Lin Tsung-Han Wu Hsin-Te Wu Hsiao-Hui Hsu Department of Computer Science and Information Engineering Shu-Te University E-mail: yclin@mail.stu.edu.tw Web Mobile Device Web Service Web Service

More information

利用ASP访问数据库的操作

利用ASP访问数据库的操作 利用 ASP 访问数据库的操作 一 建立数据库利用 SQL Server 或 Aceess Foxpro 建立一个数据库文件, 其中可以包含多张数据表, 数据表中可以包含一些记录 二 建立数据源一般说来, 以 ASP 访问数据库使用 ODBC 数据源 ODBC 支持多种类型的数据库, 只不过不同类型的数据库要使用对应的驱动程序负责对数据库的具体操作 因此, 要利用 ASP 技术从远程访问服务器上的数据库,

More information

epub 2-2

epub 2-2 2 A S P A S P A S P A S V B S c r i p t A S P A c t i v e X A S P A c t i v e X A S P A S P A c t i v e X A S P A p p l i c a t i o n A p p l i c a t i o n A p p l i c a t i o n R e q u e s t R e q u e

More information

Microsoft Word - 01.DOC

Microsoft Word - 01.DOC 第 1 章 JavaScript 简 介 JavaScript 是 NetScape 公 司 为 Navigator 浏 览 器 开 发 的, 是 写 在 HTML 文 件 中 的 一 种 脚 本 语 言, 能 实 现 网 页 内 容 的 交 互 显 示 当 用 户 在 客 户 端 显 示 该 网 页 时, 浏 览 器 就 会 执 行 JavaScript 程 序, 用 户 通 过 交 互 式 的

More information

Microsoft PowerPoint - HTML.pptx

Microsoft PowerPoint - HTML.pptx HTML 4/5 WWW (World Wide Web) HTML (HyperText Markup Language) HTML (text) (tags) (web browser) ( 50 ) : IE Firefox, Safari, Google Chrome, Edge HTML 4.0 1 index.htm, default.htm, abc.php, xyz.asp

More information

Microsoft Word - 改版式网页全文.doc

Microsoft Word - 改版式网页全文.doc 第 4 章 Dreamweaver CS3 高 级 篇 4.1 表 单 概 述 表 单 是 用 来 收 集 浏 览 者 的 用 户 名 密 码 E-mail 地 址 个 人 爱 好 和 联 系 地 址 等 用 户 信 息 的 输 入 区 域 集 合 浏 览 者 填 写 表 单 的 方 式 一 般 是 输 入 文 本 选 择 单 选 按 钮 或 复 选 框 以 及 从 下 拉 列 表 框 中 选 择

More information

Microsoft Word - PHP7Ch01.docx

Microsoft Word - PHP7Ch01.docx PHP 01 1-6 PHP PHP HTML HTML PHP CSSJavaScript PHP PHP 1-6-1 PHP HTML PHP HTML 1. Notepad++ \ch01\hello.php 01: 02: 03: 04: 05: PHP 06:

More information

IsPostBack 2

IsPostBack 2 5 IsPostBack 2 TextBox 3 TextBox TextBox 4 TextBox TextBox 1 2 5 TextBox Columns MaxLength ReadOnly Rows Text TextMode TextMode MultiLine TextMode MultiLine True False TextMode MultiLine Password MulitLine

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Perl CGI 1 Perl CGI 2 Perl CGI 3 Perl CGI 4 1. 2. 1. #!/usr/local/bin/perl 2. print "Content-type: text/html n n"; 3. print " n"; 4. print " n"; 3. 4.

More information

互動網頁技術系列課程 HTML與CSS網站基礎設計 [12pt]

互動網頁技術系列課程 HTML與CSS網站基礎設計 [12pt] HTML CSS / 2011 HTML CSS 1/ 47 1 2 HTML 3 4 HTML 5 5 : CSS 6 CSS 7 HTML CSS 2/ 47 HTML CSS 3/ 47 ( BOM) UTF-8 Notepad++ (Winodws), Fraise/Smultron (Mac), VIM ( ) HTML CSS 4/ 47 UTF-8? UTF-8 (unicode),

More information

四川省普通高等学校

四川省普通高等学校 四 川 省 普 通 高 等 学 校 计 算 机 应 用 知 识 和 能 力 等 级 考 试 考 试 大 纲 (2013 年 试 行 版 ) 四 川 省 教 育 厅 计 算 机 等 级 考 试 中 心 2013 年 1 月 目 录 一 级 考 试 大 纲 1 二 级 考 试 大 纲 6 程 序 设 计 公 共 基 础 知 识 6 BASIC 语 言 程 序 设 计 (Visual Basic) 9

More information

吉安人事招聘网2012年江西省面向村干部招考300名公务员(2013年1月13日

吉安人事招聘网2012年江西省面向村干部招考300名公务员(2013年1月13日 吉 安 人 事 招 聘 网 2012 年 江 西 省 面 向 村 干 部 招 考 300 名 公 务 员 (20 1 月 13 日 www.hmkpk.com http://www.hmkpk.com 吉 安 人 事 招 聘 网 2012 年 江 西 省 面 向 村 干 部 招 考 300 名 公 务 员 (2013 年 1 月 13 日 为 从 基 层 和 临 盆 一 线 选 拔 出 色 群 众

More information

untitled

untitled 1 .NET 利 [] [] 來 說 切 切 理 [] [ ] 來 說 拉 類 類 [] [ ] 列 連 Web 行流 來 了 不 不 不 流 立 行 Page 類 Load 理 Response 類 Write 料 Redirect URL Response.Write("!! ives!!"); Response.Redirect("WebForm2.aspx"); (1) (2) Web Form

More information

3 Driver do Microsoft Access (*.mdb) hisdata IFIX 1.4

3 Driver do Microsoft Access (*.mdb) hisdata IFIX 1.4 IFix3.5 ACCESS ACCESS hisdata D:\Dynamics\SampleSystem\HistoricalData ODBC DSN hisdata 1 ODBC 1.1 2 1.2 3 Driver do Microsoft Access (*.mdb) 1.3 4 hisdata IFIX 1.4 1.4 5 Access 1.5 6 ODBC ifix3.5 1.6 1.6

More information

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM

6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM CHAPTER 6 SQL SQL SQL 6-1 Table Column Data Type Row Record 1. DBMS 2. DBMS MySQL Microsoft Access SQL Server Oracle 3. ODBC SQL 1. Structured Query Language 2. IBM 3. 1986 10 ANSI SQL ANSI X3. 135-1986

More information

VB控件教程大全

VB控件教程大全 Datagrid DataGrid1.Columns.Remove(0) ' 0 DataGrid1.Columns.Add(0).Caption= ' DataGrod1.Columns(0).DataField= Name ' Adodc1.Refresh DataGrid BackColor Font DataGrid CellPadding HTML CellSpacing HTML Width

More information

IIS Web FTP

IIS Web FTP 1... 1 1... 1 2... 1 3... 2 6 C/S... 2 4... 4 7... 5 8... 5 9... 6 10 Web... 7 11 CORBA... 8 12... 8 2... 9 1... 9 2... 9 3... 10 4 BSP Business System Planning... 11 5... 13 6... 15 7... 15 8... 16 9...

More information

09 (File Processes) (mkdir) 9-3 (createnewfile) 9-4 (write) 9-5 (read) 9-6 (deletefile) 9-7 (deletedir) (Exercises)

09 (File Processes) (mkdir) 9-3 (createnewfile) 9-4 (write) 9-5 (read) 9-6 (deletefile) 9-7 (deletedir) (Exercises) 09 (File Processes) 9-1 9-2 (mkdir) 9-3 (createnewfile) 9-4 (write) 9-5 (read) 9-6 (deletefile) 9-7 (deletedir) (Exercises) Java Servlet 9-1 Servlet (File Processes) Client Servlet Servlet Java Java (Stream)

More information

开展纵横输入法分层教学 提高成人计算机应用能力

开展纵横输入法分层教学  提高成人计算机应用能力 基 于 PK 和 商 城 机 制 的 纵 横 码 打 字 系 统 的 设 计 与 实 现 宁 波 外 事 学 校 张 金 听 0 引 言 纵 横 输 入 法 ( 简 称 纵 横 码 ) 是 一 种 简 单 易 学 和 实 用 的 汉 字 输 入 方 法, 由 香 港 实 业 家 周 忠 继 先 生 发 明, 目 前 已 在 全 国 及 港 澳 台 等 地 区 得 到 广 泛 推 广 应 用 纵 横

More information

穨文件1

穨文件1 2-1 Access 2000 Visual Basic Access 2000 97 Office Visual Basic Visual Basic Visual Basic VBA Visual Basic Visual Basic 2-1-1 Visual Basic Access Visual Basic ( ) 2-1 2-1 Visual Basic 2-1 Microsoft Access

More information

基于UML建模的管理管理信息系统项目案例导航——VB篇

基于UML建模的管理管理信息系统项目案例导航——VB篇 PowerBuilder 8.0 PowerBuilder 8.0 12 PowerBuilder 8.0 PowerScript PowerBuilder CIP PowerBuilder 8.0 /. 2004 21 ISBN 7-03-014600-X.P.. -,PowerBuilder 8.0 - -.TP311.56 CIP 2004 117494 / / 16 100717 http://www.sciencep.com

More information

Microsoft Word - 100118002.htm

Microsoft Word - 100118002.htm 100 年 度 11800 電 腦 軟 體 應 用 乙 級 技 術 士 技 能 檢 定 學 科 測 試 試 題 本 試 卷 有 選 擇 題 80 題, 每 題 1.25 分, 皆 為 單 選 選 擇 題, 測 試 時 間 為 100 分 鐘, 請 在 答 案 卡 上 作 答, 答 錯 不 倒 扣 ; 未 作 答 者, 不 予 計 分 准 考 證 號 碼 : 姓 名 : 選 擇 題 : 1. (3)

More information

untitled

untitled .Net ADF ArcGIS Server ESRI ( ) .NET (ADF.NET) ADF.NET Web Controls Demo .NET (ADF.NET) ADF.NET ArcGIS Web C# and VB.NET Web Server Page Layout, Map, TOC, Overview Map ArcGIS Server.NET ? GIS web ArcGIS

More information

RUN_PC連載_8_.doc

RUN_PC連載_8_.doc PowerBuilder 8 (8) Web DataWindow ( ) DataWindow Web DataWindow Web DataWindow Web DataWindow PowerDynamo Web DataWindow / Web DataWindow Web DataWindow Wizard Web DataWindow Web DataWindow DataWindow

More information

声 明 本 公 司 及 全 体 董 事 监 事 高 级 管 理 人 员 承 诺 不 存 在 任 何 虚 假 记 载 误 导 性 陈 述 或 重 大 遗 漏, 并 对 其 真 实 性 准 确 性 完 整 性 承 担 个 别 和 连 带 的 法 律 责 任 本 公 司 负 责 人 和 主 管 会 计 工

声 明 本 公 司 及 全 体 董 事 监 事 高 级 管 理 人 员 承 诺 不 存 在 任 何 虚 假 记 载 误 导 性 陈 述 或 重 大 遗 漏, 并 对 其 真 实 性 准 确 性 完 整 性 承 担 个 别 和 连 带 的 法 律 责 任 本 公 司 负 责 人 和 主 管 会 计 工 Shenzhen WitSoft Information Technology Co., Ltd. 主 办 券 商 二 〇 一 六 年 二 月 声 明 本 公 司 及 全 体 董 事 监 事 高 级 管 理 人 员 承 诺 不 存 在 任 何 虚 假 记 载 误 导 性 陈 述 或 重 大 遗 漏, 并 对 其 真 实 性 准 确 性 完 整 性 承 担 个 别 和 连 带 的 法 律 责 任 本

More information

Microsoft Word - 最新正文.doc

Microsoft Word - 最新正文.doc 2 2 Web 2.0 Ajax StarTrackr! GPS RFID jquery JavaScript StarTrackr! JavaScript jquery 1 jquery jquery jquery JavaScript HTML jquery JavaScript jquery jquery jquery $(document).ready()! jquery jquery (document)

More information

untitled

untitled 1 行 行 行 行.NET 行 行 類 來 行 行 Thread 類 行 System.Threading 來 類 Thread 類 (1) public Thread(ThreadStart start ); Name 行 IsAlive 行 行狀 Start 行 行 Suspend 行 Resume 行 行 Thread 類 (2) Sleep 行 CurrentThread 行 ThreadStart

More information

目錄

目錄 資 訊 素 養 線 上 教 材 單 元 五 資 料 庫 概 論 及 Access 5.1 資 料 庫 概 論 5.1.1 為 什 麼 需 要 資 料 庫? 日 常 生 活 裡 我 們 常 常 需 要 記 錄 一 些 事 物, 以 便 有 朝 一 日 所 記 錄 的 事 物 能 夠 派 得 上 用 場 我 們 能 藉 由 記 錄 每 天 的 生 活 開 銷, 就 可 以 在 每 個 月 的 月 底 知

More information

XXXXXXXX http://cdls.nstl.gov.cn 2 26

XXXXXXXX http://cdls.nstl.gov.cn 2 26 [ ] [ ] 2003-7-18 1 26 XXXXXXXX http://cdls.nstl.gov.cn 2 26 (2003-7-18) 1...5 1.1...5 1.2...5 1.3...5 2...6 2.1...6 2.2...6 2.3...6 3...7 3.1...7 3.1.1...7 3.1.2...7 3.1.2.1...7 3.1.2.1.1...8 3.1.2.1.2...10

More information

Asprain论坛的特色

Asprain论坛的特色 第 一 章 Asprain 论 坛 的 特 色 asprain 论 坛 是 一 个 适 合 于 各 中 小 学 中 专 技 校 职 高 建 设 校 园 论 坛 师 生 交 流 论 坛, 一 些 教 科 研 部 门 公 司 企 业 建 设 内 部 论 坛 IT 技 术 爱 好 者 建 设 技 术 交 流 论 坛 的 免 费 论 坛 程 序 它 有 两 个 版 本, 分 别 是 asp+access 版

More information

untitled

untitled 1 Outline 料 類 說 Tang, Shih-Hsuan 2006/07/26 ~ 2006/09/02 六 PM 7:00 ~ 9:30 聯 ives.net@gmail.com www.csie.ntu.edu.tw/~r93057/aspnet134 度 C# 力 度 C# Web SQL 料 DataGrid DataList 參 ASP.NET 1.0 C# 例 ASP.NET 立

More information

07-form

07-form PHP 的输 入 表单与 文件上传杨亮 Web 基本流程 请求 页 面 对应 文件 获取数据 PC Mobile HTTP 请求 html css javascript 服务器 (Apache) (IIS) html css javascript 后端脚本 (PHP) (JSP) (ASP) 数据库 (MySQL) (Oracle) (Access) 返回 页 面 返回 页 面 返回数据 客户端 服务器端

More information

untitled

untitled 1 Access 料 (1) 立 料 [] [] [ 料 ] 立 料 Access 料 (2) 料 [ 立 料 ] Access 料 (3) 料 料 料 料 料 料 欄 ADO.NET ADO.NET.NET Framework 類 來 料 料 料 料 料 Ex MSSQL Access Excel XML ADO.NET 連 .NET 料.NET 料 料來 類.NET Data Provider

More information

untitled

untitled 1 .NET 料.NET 料 料來 類.NET Data Provider SQL.NET Data Provider System.Data.SqlClient 料 MS-SQL OLE DB.NET Data Provider System.Data.OleDb 料 Dbase FoxPro Excel Access Oracle Access ODBC.NET Data Provider 料

More information

Microsoft Word - Ch06.docx

Microsoft Word - Ch06.docx Chapter 6-1 6-2 6-2 l ASP.NET 6-1 (theme) ASP.NET (skin).skin ButtonLabelHyperLink (cascading style sheet).css TreeView 1. 2. (page theme) (global theme) IIS l 6-3 6-1-1 (page theme) (global theme) App_Themes

More information

MITSUBISHI

MITSUBISHI Q MITSUBISHI Web QJ71E71-100 QJ71E71-B5 QJ71E71-B2 PLC CPU!!! [ ]! PLC PLC CPU PLC PLC PLC PLC PLC CPU A - 1 A - 1 [ ]! PLC CPU PLC! 100mm 3.94in. PLC CPU RUN/STOP OPEN OPEN STOP PLC CPU RUN [ ]! PLC A

More information

(CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787

(CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787 Web (CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787 1092 1/ 16 30.75 748 2005 1 1 2005 1 1 : 1 3 100

More information

XHTML width/height bdo a code href object charset codebase hreflang archive lang type alt dir name name xml:lang rel/rev align shape/coords hspace/vsp

XHTML width/height bdo a code href object charset codebase hreflang archive lang type alt dir name name xml:lang rel/rev align shape/coords hspace/vsp XHTML CSS CSS CSS DOCTYPE Switch XHTML width/height bdo a code href object charset codebase hreflang archive lang type alt dir name name xml:lang rel/rev align shape/coords hspace/vspace big tabindex accesskey

More information

untitled

untitled 1 .NET sln csproj dll cs aspx 說 料 料 利 來 料 ( 來 ) 利 [] [] 來 說 切 切 理 [] [ ] 來 說 拉 類 類 [] [ ] 列 連 Web 行流 來 了 不 不 不 流 立 行 Page 類 Load 理 Click 滑 料 Response 列 料 Response HttpResponse 類 Write 料 Redirect URL Response.Write("!!

More information

SP_ SP_03 JAVA...6 SP_10 SQL...8 SP_ SP_ SP_ SP_ SP_ SP_ SP_ SP_04.NET...33 SP_02 C...37 SP_05

SP_ SP_03 JAVA...6 SP_10 SQL...8 SP_ SP_ SP_ SP_ SP_ SP_ SP_ SP_04.NET...33 SP_02 C...37 SP_05 1 SP_01...3 SP_03 JAVA...6 SP_10 SQL...8 SP_51...12 SP_32...15 SP_53...18 SP_20...21 SP_22...24 SP_21...27 SP_23...30 SP_04.NET...33 SP_02 C...37 SP_05 FLASH...39 SP_06...42 2 SP_01 1. 8. Excel 2. 9. PowerPoint

More information

Chapter 09 專題 : 網站留言版 Python - Django

Chapter 09 專題 : 網站留言版 Python - Django Chapter 09 專題 : 網站留言版 9.1 CAPTCHA (Completely Automated Public Turing test to tell Computers and Humans Apart) CAPTCHA CAPTCHA OCR Yahoo EZ-Gimpy 9.1.1 django-simple-captcha Django django-simple-captcha

More information

2

2 1 2 1-1 Visual Basic 3 1-2 3/8-3/21 3/22-4/4 4/5-4/18 4/19-5/2 5/3-5/16 5/17-5/30 5/31-6/13 6/14-6/27 6/28-7/11 7/12-7/25 7/26-8/8 8/9-8/22 8/25-9/5 9/6-9/19 9/20-10/3 10/4-10/17 10/18-10/31 11/15-11/28

More information

Microsoft Word - 04.doc

Microsoft Word - 04.doc 第 4 章 Dreamweaver 基 础 应 用 在 Dreamweaver 中, 创 建 网 页 非 常 简 单 用 户 只 要 熟 悉 Word 文 档 的 编 写, 就 可 以 以 所 见 即 所 得 的 方 式, 在 网 页 中 插 入 文 本 图 像 Flash 及 超 链 接 等 内 容, 从 而 制 作 出 各 式 各 样 的 网 页 本 章 将 详 细 讲 解 如 何 在 网 页

More information

untitled

untitled 21 Visual FoxPro Visual FoxPro 6.0 11 Visual FoxPro Visual FoxPro CIP Visual FoxPro 2004 21 ISBN 7-03-014834-7 V Visual FoxPro TP311.138 CIP 2004 143035 16 100717 http://www.sciencep.com * 2004 12 7871092

More information

untitled

untitled PowerBuilder Tips 利 PB11 Web Service 年度 2 PB Tips PB9 EAServer 5 web service PB9 EAServer 5 了 便 web service 來說 PB9 web service 力 9 PB11 release PB11 web service 力更 令.NET web service PB NVO 論 不 PB 來說 說

More information

Visual Basic D 3D

Visual Basic D 3D Visual Basic 2008 2D 3D 6-1 6-1 - 6-2 - 06 6-2 STEP 1 5-2 (1) STEP 2 5-3 (2) - 6-3 - Visual Basic 2008 2D 3D STEP 3 User1 6-4 (3) STEP 4 User1 6-5 (4) - 6-4 - 06 STEP 5 6-6 (5) 6-3 6-3-1 (LoginForm) PictureBox1

More information

ebook46-23

ebook46-23 23 Access 2000 S Q L A c c e s s S Q L S Q L S Q L S E L E C T S Q L S Q L A c c e s s S Q L S Q L I N A N S I Jet SQL S Q L S Q L 23.1 Access 2000 SQL S Q L A c c e s s Jet SQL S Q L U N I O N V B A S

More information

Microsoft Word - 第3章.doc

Microsoft Word - 第3章.doc Java C++ Pascal C# C# if if if for while do while foreach while do while C# 3.1.1 ; 3-1 ischeck Test() While ischeck while static bool ischeck = true; public static void Test() while (ischeck) ; ischeck

More information

C/C++ - 函数

C/C++ - 函数 C/C++ Table of contents 1. 2. 3. & 4. 5. 1 2 3 # include # define SIZE 50 int main ( void ) { float list [ SIZE ]; readlist (list, SIZE ); sort (list, SIZE ); average (list, SIZE ); bargragh

More information

<img>

<img> 04 圖片 4-1 4-2 4-3 4-4 網頁程式設計 4-1 網頁多媒體 Flash Java Applets HTML 8 4-1-1 圖片 JPEG Joint Photographic Experts Group 非失真模式 (lossless) 基本模式 (baseline standard) 1 2 12 JPEG 6 JPEG.jpg.jpe.jpeg GIF (graphic

More information

17 Chapter Video/Audio API 17-1 <video> <audio> 17-2 <video> <audio>

17 Chapter Video/Audio API 17-1 <video> <audio> 17-2 <video> <audio> 17 Chapter 17-1 17-2 網頁程式設計 17-1 API HTMLMediaElement width heightposter ( HTML 5 http://www.w3.org/tr/html5/) error

More information

第一章 章标题-F2 上空24,下空24

第一章 章标题-F2 上空24,下空24 Web 9 XML.NET Web Web Service Web Service Web Service Web Service Web Service ASP.NET Session Application SOAP Web Service 9.1 Web Web.NET Web Service Web SOAP Simple Object Access Protocol 9.1.1 Web Web

More information

untitled

untitled 01 1-1 PHP 1-2 PHP 1-3 MySQL 1-4 1-5 http://w3techs.com/technologies/history_overview/programming_language w3techs.com (Server-side) 2012 7 77.8% PHP PHP PHP PHP 1-1 PHP PHP HTML Script Windows ASP(Active

More information

06 01 action JavaScript action jquery jquery AJAX CSS jquery CSS jquery HTML CSS jquery.css() getter setter.css('backgroundcolor') jquery CSS b

06 01 action JavaScript action jquery jquery AJAX CSS jquery CSS jquery HTML CSS jquery.css() getter setter.css('backgroundcolor') jquery CSS b 06 01 action JavaScript action jquery jquery AJAX 04 4-1 CSS jquery CSS jquery HTML CSS jquery.css() getter setter.css('backgroundcolor') jquery CSS background-color camel-cased DOM backgroundcolor.css()

More information

1. 2. Flex Adobe 3.

1. 2. Flex Adobe 3. 1. 2. Flex Adobe 3. Flex Adobe Flex Flex Web Flex Flex Flex Adobe Flash Player 9 /rich Internet applications/ria Flex 1. 2. 3. 4. 5. 6. SWF Flash Player Flex 1. Flex framework Adobe Flex 2 framework RIA

More information

ebook193-1

ebook193-1 1 Domino Web 1.1 D o m i n o We b, D o m i n o N e t s c a p e O r a c l e We b D o m i n o We b Lotus Notes, D o m i n o D o m i n o We b D o m i n o N o t e s N o t e Domino We b D o m i n o D o m i

More information

Microsoft Word - 小心翼翼的二十一點N.doc

Microsoft Word - 小心翼翼的二十一點N.doc 投 稿 類 別 : 資 訊 類 篇 名 : 小 心 翼 翼 的 二 十 一 點 作 者 : 陳 鈺 文 國 立 瑞 芳 高 級 工 業 職 業 學 校 資 訊 二 李 伯 謙 國 立 瑞 芳 高 級 工 業 職 業 學 校 資 訊 二 胡 家 媛 國 立 瑞 芳 高 級 工 業 職 業 學 校 資 訊 二 指 導 老 師 : 周 曉 玲 老 師 陳 思 亮 主 任 壹 前 言 一 研 究 動 機 平

More information

Microsoft PowerPoint - ch15_1.ppt

Microsoft PowerPoint - ch15_1.ppt JavaScript 實用範例 15-1 視窗基本操作 15-1-1 歡迎對話方塊 顯示歡迎視窗 15-1-2 告別對話方塊 顯示告別視窗

More information

上海市教育考试院关于印发新修订的

上海市教育考试院关于印发新修订的 沪 教 考 院 社 考 2012 7 号 上 海 市 教 育 考 试 院 关 于 印 发 上 海 市 高 等 学 校 计 算 机 等 级 考 试 大 纲 (2012 年 修 订 ) 的 通 知 各 有 关 高 校 : 为 进 一 步 加 强 本 市 高 校 计 算 机 基 础 教 学 工 作, 推 进 学 校 更 加 科 学 合 理 地 设 置 计 算 机 基 础 课 程 及 安 排 教 学 内 容,

More information

ThreeDtunnel.doc

ThreeDtunnel.doc (12) 1 1. Visual Basic Private Sub LoadDatabase() Dim strip As String Dim straccount As String Dim strpassword As String Dim strdatabase As String Dim strtable As String Dim strsql As String Dim strtemp1

More information

0SQL SQL SQL SQL SQL 3 SQL DBMS Oracle DBMS DBMS DBMS DBMS RDBMS R DBMS 2 DBMS RDBMS R SQL SQL SQL SQL SELECT au_fname,au_ lname FROM authors ORDER BY

0SQL SQL SQL SQL SQL 3 SQL DBMS Oracle DBMS DBMS DBMS DBMS RDBMS R DBMS 2 DBMS RDBMS R SQL SQL SQL SQL SELECT au_fname,au_ lname FROM authors ORDER BY 0 SQL SQL SELECT DISTINCT city, state FROM customers; SQL SQL DBMS SQL DBMS SQL 0-1 SQL SQL 0SQL SQL SQL SQL SQL 3 SQL DBMS Oracle DBMS DBMS DBMS DBMS RDBMS R DBMS 2 DBMS RDBMS R SQL SQL SQL SQL SELECT

More information

Construction on the Teaching Web of Optics Course in General Physics B.S Candidate: Li Ai-Xue School of Physics Science and Technology Supervisor: Che

Construction on the Teaching Web of Optics Course in General Physics B.S Candidate: Li Ai-Xue School of Physics Science and Technology Supervisor: Che [ ] [ ] 1 ( 21 ) Construction on the Teaching Web of Optics Course in General Physics B.S Candidate: Li Ai-Xue School of Physics Science and Technology Supervisor: Cheng Qing-Hua School of Physics Science

More information

内 容 协 作 平 台 TRS WCM 6.5 北 京 拓 尔 思 信 息 技 术 股 份 有 限 公 司 Beijing TRS Information Technology Co., Ltd 版 权 说 明 本 手 册 由 北 京 拓 尔 思 信 息 技 术 股 份 有 限 公 司 ( 以 下 简 称 TRS 公 司 ) 出 版, 版 权 属 TRS 公 司 所 有 未 经 出 版 者 正 式

More information

WWW PHP

WWW PHP WWW PHP 2003 1 2 function function_name (parameter 1, parameter 2, parameter n ) statement list function_name sin, Sin, SIN parameter 1, parameter 2, parameter n 0 1 1 PHP HTML 3 function strcat ($left,

More information

untitled

untitled 1 LinkButton LinkButton 連 Button Text Visible Click HyperLink HyperLink 來 立 連 Text ImageUrl ( ) NavigateUrl 連 Target 連 _blank _parent frameset _search _self 連 _top 例 sample2-a1 易 連 private void Page_Load(object

More information

<4D6963726F736F667420576F7264202D20383439342D352DBED6D3F2CDF8D7E9BDA8D3EBB9DCC0EDCFEEC4BFBDCCB3CCD5FDCEC42E646F63>

<4D6963726F736F667420576F7264202D20383439342D352DBED6D3F2CDF8D7E9BDA8D3EBB9DCC0EDCFEEC4BFBDCCB3CCD5FDCEC42E646F63> 第 4 单 元 搭 建 自 己 的 Web 站 点 本 单 元 通 过 学 习 架 构 Web 服 务 器, 实 现 Web 服 务, 管 理 Web 站 点, 了 解 Web 站 点 服 务 器 的 架 构 个 人 空 间 和 虚 拟 主 机 的 概 念, 掌 握 IIS 组 件 的 安 装 Web 站 点 的 创 建 管 理 站 点 属 性 选 项 卡 的 配 置 管 理 等 知 识,Web 网

More information

第 15 章 程 式 編 写 語 言 15.1 程 式 編 写 語 言 的 角 色 程 式 編 寫 語 言 是 程 式 編 寫 員 與 電 腦 溝 通 的 界 面 語 法 是 一 組 規 則 讓 程 式 編 寫 員 將 字 詞 集 合 起 來 電 腦 是 處 理 位 元 和 字 節 的 機 器, 與

第 15 章 程 式 編 写 語 言 15.1 程 式 編 写 語 言 的 角 色 程 式 編 寫 語 言 是 程 式 編 寫 員 與 電 腦 溝 通 的 界 面 語 法 是 一 組 規 則 讓 程 式 編 寫 員 將 字 詞 集 合 起 來 電 腦 是 處 理 位 元 和 字 節 的 機 器, 與 程 式 編 写 語 言 在 完 成 這 章 後, 你 將 能 夠 了 解 程 式 編 写 語 言 的 功 能 了 解 高 階 語 言 和 低 階 語 言 之 間 的 分 別 知 道 翻 譯 程 式 的 意 義 和 能 夠 把 翻 譯 程 式 分 類 為 : 匯 編 程 式 編 譯 程 式 和 解 譯 程 式 認 識 不 同 翻 譯 程 式 的 優 點 和 缺 點 程 式 是 指 揮 電 腦 的 指

More information

<4D6963726F736F667420576F7264202D20C9CFBAA3CAD0BCC6CBE3BBFAB5C8BCB6BFBCCAD4C8FDBCB6BFBCCAD4B4F3B8D95FBDA8D2E9B8E55F5F303632352E646F63>

<4D6963726F736F667420576F7264202D20C9CFBAA3CAD0BCC6CBE3BBFAB5C8BCB6BFBCCAD4C8FDBCB6BFBCCAD4B4F3B8D95FBDA8D2E9B8E55F5F303632352E646F63> 上 海 市 高 等 学 校 计 算 机 等 级 考 试 ( 三 级 ) 考 试 大 纲 -- 建 议 稿 -- 2007-6-25 25 目 录 上 海 市 高 等 学 校 计 算 机 等 级 考 试 三 级 总 体 说 明 -----------------1 三 级 ( 计 算 机 系 统 与 网 络 技 术 ) 考 试 大 纲 ---------------------2 三 级 ( 管 理

More information

1-1 database columnrow record field 不 DBMS Access Paradox SQL Server Linux MySQL Oracle IBM Informix IBM DB2 Sybase 1-2

1-1 database columnrow record field 不 DBMS Access Paradox SQL Server Linux MySQL Oracle IBM Informix IBM DB2 Sybase 1-2 CHAPTER 1 Understanding Core Database Concepts 1-1 database columnrow record field 不 DBMS Access Paradox SQL Server Linux MySQL Oracle IBM Informix IBM DB2 Sybase 1-2 1 Understanding Core Database Concepts

More information

ii Vue Bootstrap 4 ES 6 Vue Vue Bootstrap 4 ES 6 Vue 2 vue html vue html vue Vue HTML 5 CSS ES 6 HTML 5 CSS Visual Studio Code h

ii Vue Bootstrap 4 ES 6 Vue Vue Bootstrap 4 ES 6 Vue 2 vue html vue html vue Vue HTML 5 CSS ES 6 HTML 5 CSS Visual Studio Code h ii Vue Bootstrap 4 ES 6 Vue Vue Bootstrap 4 ES 6 Vue 2 vue010101.html vue010104.html vue0101 01 04 Vue HTML 5 CSS ES 6 HTML 5 CSS Visual Studio Code https://code.visualstudio.com/ Chrome XAMP Visual Studio

More information

プリント

プリント For Higher Customer Satisfaction, We Bridge the SAS System Between Customer s World. YourModelsBuild up Your NextAnalytics 02 Y β0 β1x1 β2x2 ε Y ~ μ σ 2 μ β0 β1x1 β2x2 Y ~ n p logit(p) β0 β1x1 β2x2 logit(p)logit(p)=log(p/(1-p))

More information

Microsoft PowerPoint - ch07_1.ppt

Microsoft PowerPoint - ch07_1.ppt 表單 7-1 認識表單 表單的建立可以分成三個階段 : 一 決定要蒐集的資料二 建立表單三 設計表單處理程式 單行文字方塊 多行文字方塊 核取方塊 選擇鈕 下拉式功能表 按鈕 密碼欄位 7-2 將電腦架設為 Web 伺服器 1. 2. 3. 7-3 建立表單的輸入介面 ... 標籤屬性解說 : ACCEPT-CHARSET="..." ACCEPT="... ACTION="URL

More information

1 1 大概思路 创建 WebAPI 创建 CrossMainController 并编写 Nuget 安装 microsoft.aspnet.webapi.cors 跨域设置路由 编写 Jquery EasyUI 界面 运行效果 2 创建 WebAPI 创建 WebAPI, 新建 -> 项目 ->

1 1 大概思路 创建 WebAPI 创建 CrossMainController 并编写 Nuget 安装 microsoft.aspnet.webapi.cors 跨域设置路由 编写 Jquery EasyUI 界面 运行效果 2 创建 WebAPI 创建 WebAPI, 新建 -> 项目 -> 目录 1 大概思路... 1 2 创建 WebAPI... 1 3 创建 CrossMainController 并编写... 1 4 Nuget 安装 microsoft.aspnet.webapi.cors... 4 5 跨域设置路由... 4 6 编写 Jquery EasyUI 界面... 5 7 运行效果... 7 8 总结... 7 1 1 大概思路 创建 WebAPI 创建 CrossMainController

More information

Data Server_new_.doc

Data Server_new_.doc 0i B/C Data Server Windows 2000 Window XP Windows XP FTP FANUC Data Server FTP liwei@beijing-fanuc 1 06-10-8 Content 1. /...3 1.1...3 1.2...3 1.3 CNC...3 2....5 2.1 STORAGE...5 2.2 FTP...6 2.3 BUFFER...7

More information

1. ( B ) IT (A) (B) (C) (D) 2. ( A ) (A) (B) (C) (D) 3. ( B ) (A) GPS (B) GIS (C) ETC (D) CAI 4. ( D ) (A) (B) (C) (D) 5. ( B ) (Stored Program) (A) H

1. ( B ) IT (A) (B) (C) (D) 2. ( A ) (A) (B) (C) (D) 3. ( B ) (A) GPS (B) GIS (C) ETC (D) CAI 4. ( D ) (A) (B) (C) (D) 5. ( B ) (Stored Program) (A) H ... 2... 4... 6... 8... 10... 12... 14... 16... 18... 20... 22... 24... 25... 26... 28 1. ( B ) IT (A) (B) (C) (D) 2. ( A ) (A) (B) (C) (D) 3. ( B ) (A) GPS (B) GIS (C) ETC (D) CAI 4. ( D ) (A) (B) (C)

More information

工程施工招标

工程施工招标 郑 州 市 教 育 局 教 学 研 究 室 考 试 网 上 评 卷 及 数 据 分 析 技 术 服 务 采 购 项 目 谈 判 文 件 采 购 编 号 : 郑 财 单 一 来 源 2016-J004 号 HENAN TENDER-PURCHASE SERVICE CO.,LTD. 目 第 一 部 分 邀 请 函... 6 第 二 部 分 主 要 维 护 及 服 务 内 容... 7 第 三 部 分

More information

關於本書 l 3 PhoneGap Appcelerator Titanium Sencha Touch (wrapper framework) Native App PhoneGap Build Native App Hybrid App Java Objective-C Android SDK

關於本書 l 3 PhoneGap Appcelerator Titanium Sencha Touch (wrapper framework) Native App PhoneGap Build Native App Hybrid App Java Objective-C Android SDK 2 l 跨裝置網頁設計 Android ios Windows 8 BlackBerry OS Android HTML 5 HTML 5 HTML 4.01 HTML 5 CSS 3 CSS 3 CSS 2.01 CSS 3 2D/3D PC JavaScript

More information

ebook37-4

ebook37-4 4 4.1 H T M L F r o n t P a g e i m a g e m a p H T M L We b We b 4.1.1 We b We b We b We b 4.1.2 We b 4 35 4.1.3 4-1 G I F 4-2 36 4-1 ( 4-2 ) 4.1.4 We b We b 4-3 4-3 4 37 Ly n x 4-4 4-4 4.1.5 We b We

More information

1.1 OfficeScan OfficeScan V5.02 SOP OfficeScan HTTP-based Windows NT/Windows Intel Pentium II 233 MHz 64 MB 200 MB 640 x Wi

1.1 OfficeScan OfficeScan V5.02 SOP OfficeScan HTTP-based Windows NT/Windows Intel Pentium II 233 MHz 64 MB 200 MB 640 x Wi 1.1 OfficeScan OfficeScan V5.02 SOP 1.1.1 OfficeScan HTTP-based Windows NT/Windows 2000 1.1.1.1 Intel Pentium II 233 MHz 64 MB 200 MB 640 x 480 256 Windows NT 1.1.1.2 Windows NT 4.0 SP5 Windows 2000 SP1/SP2

More information

目 錄 第 一 章 weberp 簡 介... 6 第 一 節 概 述... 6 第 二 節 安 全 性... 7 第 三 節 功 能... 7 一 銷 售 及 訂 單... 7 二 稅... 8 三 應 收 帳 款... 8 四 存 貨... 8 五 購 買... 9 六 應 付 帳 款... 9

目 錄 第 一 章 weberp 簡 介... 6 第 一 節 概 述... 6 第 二 節 安 全 性... 7 第 三 節 功 能... 7 一 銷 售 及 訂 單... 7 二 稅... 8 三 應 收 帳 款... 8 四 存 貨... 8 五 購 買... 9 六 應 付 帳 款... 9 東 吳 大 學 企 研 所 資 訊 管 理 期 末 報 告 weberp 使 用 說 明 書 指 導 教 授 : 尚 榮 安 教 授 第 一 組 童 偉 哲 01353025 劉 彥 澧 01353028 史 璦 禎 01353031 吳 采 紋 98153143 1 目 錄 第 一 章 weberp 簡 介... 6 第 一 節 概 述... 6 第 二 節 安 全 性... 7 第 三 節 功

More information

<55342D323637CBB5C3F7CAE92E786C73>

<55342D323637CBB5C3F7CAE92E786C73> U4-267 / 1 U4-267 / : CF PowerPoint, TCP/IP Internet Explorer 2 ..2..3..4..5..5..5..9 PC...10 11 12 14 14....15....15....16....16....17....17....18....18....20 23....27 27 PC...27....28 3 CF SanDisk CompactFlash)

More information

Microsoft PowerPoint - P766Ch09.ppt

Microsoft PowerPoint - P766Ch09.ppt PHP5&MySQL 程式設計 第 9 章在網頁之間傳遞資訊 9-1 蒐集網頁上的資訊 9-1-1 建立表單一 決定要蒐集的資訊二 建立表單三 撰寫表單處理程式 單行文字方塊 多行文字方塊 選擇鈕 核取方塊 下拉式功能表 按鈕 密碼欄位 ... 標籤 ACCEPT-CHARSET="... CHARSET="... ACCEPT="... ACTION="URL URL"

More information

目录

目录 目 录 1 系 统 概 述... 1 1.1 主 要 功 能... 1 1.2 工 作 环 境 要 求... 2 1.2.1 硬 件 环 境... 2 1.2.2 操 作 系 统... 2 1.2.3 数 据 库... 2 1.2.4 浏 览 器... 2 2 安 装 卸 载... 3 2.1 安 装 步 骤... 3 2.2 使 用 加 密 狗... 5 2.3 卸 载 步 骤... 6 3 新

More information

untitled

untitled 說 參 例 邏 邏 1. 說 2. 數 數 3. 8 4. 理念 李 龍老 立 1. 理 料 2. 理 料 3. 數 料 4. 流 邏 念 5. 良 6. 讀 行 行 7. 行 例 來 邏 1. 說 說 識 量 2. 說 理 類 3. 數 數 念 4. 令 5. 良 6. 流 邏 念 7. 說 邏 理 力 1. 2. 3. 4. 5. 列 念 1 參 1. ( Visual Basic 例 ) (1)

More information

bootstrap - 2

bootstrap - 2 RITA TEACHING Bootstra p ENTER bootstrap - 2 bootstrap - 3 bootstrap 101 Template

More information

付宝容器 jsapi 档 册 PDF 版本 本版本为实验版本, 为线下独 查看使, 受制于 成 PDF 程序的限制, 样式问题还没有很好的解决, 例如分 切图 代码 亮 推荐使 在线版本, 便实时查看 jsapi 运 效果 如需搜索, 使 阅读 PDF 软件 带功能即可 更多细节样式调整和 录索引探

付宝容器 jsapi 档 册 PDF 版本 本版本为实验版本, 为线下独 查看使, 受制于 成 PDF 程序的限制, 样式问题还没有很好的解决, 例如分 切图 代码 亮 推荐使 在线版本, 便实时查看 jsapi 运 效果 如需搜索, 使 阅读 PDF 软件 带功能即可 更多细节样式调整和 录索引探 付宝容器 jsapi 档 册 PDF 版本 本版本为实验版本, 为线下独 查看使, 受制于 成 PDF 程序的限制, 样式问题还没有很好的解决, 例如分 切图 代码 亮 推荐使 在线版本, 便实时查看 jsapi 运 效果 如需搜索, 使 阅读 PDF 软件 带功能即可 更多细节样式调整和 录索引探索建设中 成时间 : 2017-07-20 12:13:21 Since 8.6 定义键盘 定义键盘使

More information

untitled

untitled Database System Principle Database System Principle 1 SQL 3.1 SQL 3.2-3.3 3.4 3.5 3.6 Database System Principle 2 3.1 SQL SQL Structured Query Language SQL Database System Principle 3 SQL 3.1.1 SQL 3.1.2

More information