自考“計(jì)算機(jī)及應(yīng)用”專(zhuān)業(yè)論文參考范文(6) -自考串講筆記
2、信息查詢(xún)
<%
dim strsql,conn,rs
set conn=server.createobject(“ADODB.connection”)
conn.open (“DSN=information;UID=;PWD=;”)
set rs=server.createobject(“ADODB.Recordset”)
strsql=“select * from infor where name= '” & request(“name”) &“'”//利用SQL建立查詢(xún)
rs.open strsql,conn
%>
<table width=“1205” border=“1” align=“l(fā)eft” bordercolor=“#6600CC”>
<tr> //本行寫(xiě)上要顯示的字段的相應(yīng)的中文名
<td width=“69”><div align=“center”><font size=“2”>姓名</font></div></td>
<td width=“46”><div align=“center”><font size=“2”>性別</font></div></td>
<td width=“122”><div align=“center”><font size=“2”>出生年</font></div></td>
<td width=“46”><div align=“center”><font size=“2”>學(xué)歷</font></div></td>
<td width=“91”><div align=“center”><font size=“2”>政治面貌</font></div></td>
<td width=“91”><div align=“center”><font size=“2”>專(zhuān)業(yè)</font></div></td>
<td width=“50”><div align=“center”><font size=“2”>班級(jí)</font></div></td>
<td width=“69”><div align=“center”><font size=“2”>班主任</font></div></td>
<td width=“122”><div align=“center”><font size=“2”>入學(xué)時(shí)間</font></div></td>
<td width=“146”><div align=“center”><font size=“2”>聯(lián)系電話</font></div></td>
<td width=“337”><div align=“center”><font size=“2”>聯(lián)系地址</font></div></td>
</tr>
<% while Not rs.eof %> //循環(huán)語(yǔ)句控制符合條件的記錄輸出
<tr> //本行根據(jù)循環(huán)條件可以重復(fù)輸出
<td><div align=“center”><font size=“2”><%=rs(“name”)%></font></div></td>
/*輸出數(shù)據(jù)庫(kù)中符合條件的name字段的值*/
<td><div align=“center”><font size=“2”><%=rs(“sex”)%></font></div></td>
<td><div align=“center”><font size=“2”><%=rs(“birth”)%></font></div></td>
<td><div align=“center”><font size=“2”><%=rs(“xl”)%></font></div></td>
<td><div align=“center”><font size=“2”><%=rs(“zzmm”)%></font></div></td>
<td><div align=“center”><font size=“2”><%=rs(“career”)%></font></div></td>
<td><div align=“center”><font size=“2”><%=rs(“class”)%></font></div></td>
<td><div align=“center”><font size=“2”><%=rs(“teach”)%></font></div></td>
<td><div align=“center”><font size=“2”><%=rs(“date”)%></font></div></td>
<td><div align=“center”><font size=“2”><%=rs(“tel”)%></font></div></td>
<td><div align=“center”><font size=“2”><%=rs(“add”)%></font></div></td> </tr>
<% rs.movenext
Wend
rs.close
conn.close
%>
</table>
3、信息修改
<%
set conn=server.createobject(“adodb.connection”)
conn.open “DSN=information;UID=;PWD=;”
set rs=server.CreateObject(“adodb.recordset”)
username=request(“name”) // 取得name表單的值賦給username
strsql=“select * from infor where name='”&username&“'” //建立SQL查詢(xún)
rs.open strsql,conn,3,3
%>
<form action=“zhuce.asp” method=“post”>
// 以POST方式將修改的記錄通過(guò)zhuce.asp頁(yè)面的程序保存到數(shù)據(jù)庫(kù)當(dāng)中
<table width=“75%” border=“1” align=“center” bordercolor=“#663399”>
<tr>
<td width=“18%”><div align=“right”><font size=“2”>姓 名:</font></div></td>
<td width=“36%”><font size=“2”>
<input name=“name” type=“text” id=“name” value=“<%=rs.fields(”name“)%>”>
</font></td> //顯示符合查詢(xún)條件的數(shù)據(jù)庫(kù)當(dāng)中name字段的值,供修改
<td width=“15%”><div align=“right”><font size=“2”>入學(xué)時(shí)間:</font></div></td>
<td width=“31%”><input name=“time” type=“text” id=“time” value=“<%=rs.fields(”date“)%>”></td>
</tr>
<tr>
<td height=“20”><div align=“right”><font size=“2”>性 別:</font></div></td>
<td><p>
<label>
<input name=“sex” type=“radio” value=“<%=rs.fields(”sex“)%>” checked>
男</label>
<label>
<input type=“radio” name=“sex” value=“<%=rs.fields(”sex“)%>”>
女</label>
<br>
</p></td>
<td><div align=“right”><font size=“2”>專(zhuān)業(yè):</font></div></td>
<td><input name=“career” type=“text” id=“career” value=“<%=rs.fields(”career“)%>”></td>
</tr>
<tr>
<td><div align=“right”><font size=“2”>出生年月:</font></div></td>
<td><font size=“2”>
<input name=“birthday” type=“text” id=“birthday” value=“<%=rs.fields(”birth“)%>”>
</font></td>
<td><div align=“right”><font size=“2”>班級(jí):</font></div></td>
<td><input name=“class” type=“text” id=“class” value=“<%=rs.fields(”class“)%>”></td>
</tr>
<tr>
<td><div align=“right”><font size=“2”>政治面貌:</font></div></td>
<td><select name=“zz” id=“zz”>
<option value=“團(tuán)員”>團(tuán)員</option>
<option value=“黨員”>黨員</option>
<option value=“其他”>其他</option>
</select></td>
<td><div align=“right”><font size=“2”>班主任:</font></div></td>
<td><input name=“teach” type=“text” id=“teach” value=“<%=rs.fields(”teach“)%>”></td>
</tr>
<tr>
<td><div align=“right”><font size=“2”>學(xué)歷:</font></div></td>
<td><font size=“2”>
<select name=“xl” id=“xl”>
<option value=“初中”>初中</option>
<option value=“高中”>高中</option>
<option value=“大專(zhuān)”>大專(zhuān)</option>
<option value=“本科”>本科</option>
<option value=“研究生”>研究生</option>
<option value=“其他”>其他</option>
</select>
</font></td>
<td><div align=“r
2.部分稿件來(lái)源于網(wǎng)絡(luò),如有不實(shí)或侵權(quán),請(qǐng)聯(lián)系我們溝通解決。最新官方信息請(qǐng)以湖北省教育考試院及各教育官網(wǎng)為準(zhǔn)!
-
112023-03湖北自考《運(yùn)輸保險(xiǎn)》精選習(xí)題及答案匯總湖北自考《運(yùn)輸保險(xiǎn)》精選習(xí)題及答案匯總
-
112023-03湖北自考《運(yùn)輸保險(xiǎn)》精選習(xí)題及答案(5)湖北自考《運(yùn)輸保險(xiǎn)》精選習(xí)題及答案(5)
-
112023-03湖北自考《運(yùn)輸保險(xiǎn)》精選習(xí)題及答案(4)湖北自考《運(yùn)輸保險(xiǎn)》精選習(xí)題及答案(4)
-
112023-03湖北自考《運(yùn)輸保險(xiǎn)》精選習(xí)題及答案(3)湖北自考《運(yùn)輸保險(xiǎn)》精選習(xí)題及答案(3)
-
112023-03湖北自考《運(yùn)輸保險(xiǎn)》精選習(xí)題及答案(2)湖北自考《運(yùn)輸保險(xiǎn)》精選習(xí)題及答案(2)
-
112023-03湖北自考《運(yùn)輸保險(xiǎn)》精選習(xí)題及答案(1)湖北自考《運(yùn)輸保險(xiǎn)》精選習(xí)題及答案(1)
已幫助10w萬(wàn)+意向?qū)W歷提升用戶(hù)成功上岸
毛澤東思想概論
培訓(xùn)優(yōu)勢(shì):課時(shí)考點(diǎn)精講+刷題+沖刺,熟練應(yīng)對(duì)考試題型。全程督促學(xué)習(xí),安排好學(xué)習(xí)計(jì)劃。 毛澤東思想概論...自考培訓(xùn)英語(yǔ)二
本課程既是一門(mén)語(yǔ)言實(shí)踐課程,也是拓寬知識(shí)、了解世界文化的重要素質(zhì)課程,它以培養(yǎng)學(xué)習(xí)者的綜合語(yǔ)言應(yīng)用能力為目標(biāo),使他們?cè)趯W(xué)習(xí)、工作和社會(huì)交往中能夠使用英語(yǔ)進(jìn)行有效的交流。 英語(yǔ)二...自考培訓(xùn)馬克思主義基本原理概論
本書(shū)包括兩個(gè)部分:自學(xué)考試大綱和基本原理。主要內(nèi)容有,馬克思主義是關(guān)于工人階級(jí)和人類(lèi)解放的科學(xué),物質(zhì)世界及其發(fā)展規(guī)律,認(rèn)識(shí)的本質(zhì)及其規(guī)律,人類(lèi)社會(huì)及其發(fā)展規(guī)律,資本主義的形成及其發(fā)展,資本主義發(fā)展的歷史進(jìn)程,社會(huì)主義社會(huì)及其進(jìn)程,共產(chǎn)主義社會(huì)及其進(jìn)程等。 馬克思主義基本原理概論...自考培訓(xùn)思想道德修養(yǎng)與法律基礎(chǔ)
《思想道德修養(yǎng)與法律基礎(chǔ)》課具有鮮明的政治性、思想性、理論性、針對(duì)性、科學(xué)性、知識(shí)性以及實(shí)踐性和修養(yǎng)性。它包羅政治、思想、道德、心理本質(zhì)、學(xué)習(xí)成才和法律本質(zhì)等內(nèi)容,指導(dǎo)和回答大學(xué)生在人生、抱負(fù)、信念等方面遍及關(guān)心和迫切需要解決的問(wèn)題。 思想道德修養(yǎng)與法律基礎(chǔ)...自考培訓(xùn)中國(guó)近代史綱要
“中國(guó)近現(xiàn)代史綱要”全國(guó)高等教育自學(xué)考試指定教材,依據(jù)中央審定的普通高等學(xué)校“中國(guó)近現(xiàn)代史綱要”編寫(xiě)大綱以及馬克思主義理論研究和建設(shè)工程重點(diǎn)教材《中國(guó)近現(xiàn)代史綱要》,結(jié)合自學(xué)考試的特點(diǎn)設(shè)計(jì)了十章,集中講述1840年鴉片戰(zhàn)爭(zhēng)爆發(fā)一直到2007年中國(guó)共產(chǎn)黨第十七次全國(guó)代表大會(huì)召開(kāi)的160多年的中國(guó)近現(xiàn)代歷史。 中國(guó)近代史綱要...自考培訓(xùn)
- 湖北自考2025年4月自學(xué)考試準(zhǔn)考證打印4月2日開(kāi)始打??!考生注意!
- 2025年上半年中南財(cái)經(jīng)政法大學(xué)自考畢業(yè)生申請(qǐng)學(xué)位通知
- 2025年上半年華中農(nóng)業(yè)大學(xué)自考實(shí)踐課程及畢業(yè)論文考核安排通知
- 2025年4月武漢輕工大學(xué)自考網(wǎng)絡(luò)助學(xué)綜合測(cè)評(píng)考核實(shí)施方案
- 2025年4月中南財(cái)經(jīng)政法大學(xué)自考學(xué)業(yè)綜合評(píng)價(jià)網(wǎng)絡(luò)助學(xué)綜合測(cè)驗(yàn)工作安排通知
- 2025年春季武漢大學(xué)自考本科畢業(yè)生學(xué)士學(xué)位申請(qǐng)工作通知
- 2025年上半年漢江師范學(xué)院自考本科助學(xué)班畢業(yè)論文答辯工作通知
- 2025年4月漢江師范學(xué)院自考集中網(wǎng)絡(luò)綜合測(cè)試通知
- 2025年4月武漢大學(xué)自考網(wǎng)絡(luò)助學(xué)綜合測(cè)評(píng)考生須知
- 湖北小自考報(bào)考需要注意什么?速來(lái)了解! 查看更多

掃一掃關(guān)注微信公眾號(hào)
隨時(shí)獲取湖北省自考政策、通知、公告以及各類(lèi)學(xué)習(xí)資料、學(xué)習(xí)方法、課程。