明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

一個(gè)技巧完善的專欄管理的程序->這是asp.net的第二個(gè)應(yīng)用(3)

[摘要]http://www.asp888.net 豆腐技術(shù)站 剛才說(shuō)了一些題外話,現(xiàn)在我們來(lái)看看我們?nèi)绾螌⒃赼dd.aspx中輸入的數(shù)據(jù)保存在sql server中<!--#include file...
http://www.asp888.net 豆腐技術(shù)站

剛才說(shuō)了一些題外話,現(xiàn)在我們來(lái)看看我們?nèi)绾螌⒃赼dd.aspx中輸入的數(shù)據(jù)保存在sql server中
<!--#include file="func.aspx"-->
<%
dim conn as SQLConnection
dim sqlRead as SQLDataReader
dim sqlCmd as SQLCommand
'這樣我們通過(guò) func.aspx 文件的使用,對(duì)連接代碼等等很多通用的程序進(jìn)行了同意的管理和調(diào)用
conn=GetConn()
dim strUserName as string
dim strPass as string
dim strSQL as string
strUserName=request.form("txtUserid")
strPass=request.form("txtPass")
strSQL="select UserPassword from lanmuuser where username='" & replaceSql(strUserName) & "'"

sqlCmd=new SQLCommand(strSQL,conn)
sqlCmd.ActiveConnection.Open()
sqlCmd.Execute(sqlRead)
sqlCmd.ActiveConnection.Close()
'這個(gè)部分是對(duì) 添加文章的用戶 進(jìn)行 限制和管理
'在演示的版本中,這段代碼是 屏蔽起來(lái)的,如果我們需要對(duì) 用戶進(jìn)行限制
'簡(jiǎn)單的作個(gè)lanmuuser 的 table 就可以了
if not sqlRead.Read() then
response.Write("這個(gè)用戶不存在")
response.end
end if
if sqlRead(0)<>strPass then
'密碼不正確
response.Write("密碼不正確")
response.end
end if
'校驗(yàn)合法
dim strClassid as string
strClassid=request.form("selClass")
dim strTitle as string
strTitle=request.form("txtTitle")
dim strContent as string
strContent=request.form("txtContent")
dim strSelFrom as string
strSelFrom=request.form("selFrom")
strSQL="insert into lanmu(classid,title,content,dtime,userid,IsUse,viewnum,selFrom)values("
strSQL=strSQL & "" & strClassId & ",'" & replaceSql(strTitle) & "','" & replaceSql(strContent) & "',"
strSQL=strSQL & "getdate(),'" & replaceSql(strUserName) & "','0',0,'" & strSelFrom & "')"

sqlCmd=new SQLCommand(strSQL,conn)
sqlCmd.ActiveConnection.Open()
'response.write(strSQL)
sqlCmd.execute
response.write("恭喜,恭喜,您的文章已經(jīng)成功的添加到了 文章數(shù)據(jù)庫(kù),管理員會(huì)在下次更新的時(shí)候檢查你的文章,如果沒(méi)有什么問(wèn)題的話,您的文章將會(huì)很快出現(xiàn)在我們的欄目中")
response.end
%>

呵呵,是不是很簡(jiǎn)單?:)別高興的太早,這個(gè)只是把數(shù)據(jù)存入了數(shù)據(jù)庫(kù),下面我們就會(huì)在后面的文章中,看到我們
是怎么樣把數(shù)據(jù)顯示出來(lái)的,畢竟,這個(gè)才識(shí)主要的:)