在ASP中,從資料庫讀取內容,只顯示純文字怎麼弄

時間 2022-07-16 07:45:04

1樓:帳號已登出

function removehtml(str)dim re

set re=new regexp

re.pattern="<.*?>"

re.ignorecase=true

re.global=true

str=re.replace(str,"")set re=nothing

removehtml=str

end function

過濾掉html字元 只需要輸出的時候呼叫以下就ok

2樓:

<%function removehtml(strhtml)

on error resume next

dim objregexp, stroutput

set objregexp = new regexp

objregexp.ignorecase = true

objregexp.global = true

objregexp.pattern = "<.+?>"

stroutput = objregexp.replace(strhtml, "")

stroutput = replace(stroutput, "<", "〈")

stroutput = replace(stroutput, ">", "〉")

stroutput = replace(str0utput, "", "")

removehtml = stroutput

set objregexp = nothing

end function

%>然後在你想要輸出的地方寫入:<%=removehtml(rs("欄位名"))%>就搞定了!

使asp網頁中取出來的資料不按資料庫中的樣式顯示,而顯示純文字形式?

3樓:

你的html和css樣式沒寫好。

4樓:匿名使用者

你從資料庫讀出的資料不是按照資料庫裡的格式的 只是資料而已 不帶格式的

你要把他怎麼顯示 實在網頁裡實現的 比如用html 或者 css 這是需要自己控制的

5樓:匿名使用者

當然這樣顯示呀,你打算讓他怎麼顯示?

你打算把html標籤也全部顯示嗎??

那得通過函式,改變一下字元。

asp中如何從sql資料庫中讀出文字資料並顯示出來

6樓:專注商業文件

sql語句

.....

something

" />

其他類似

asp程式設計 怎樣實現:從資料庫中讀出資料,只顯示前n的字元,…

7樓:若綺彤

使用方法:

cutstr(rs("title"),20,1) 『20是顯示20個字元,1是加省略號

'//字串擷取函式(按半形)

'//flag—1為加省略號,0不加

function cutstr(str,length,flag)dim l,t,c,i

l=len(str)

t=0if l>=1 then

for i=1 to l

c=ascw(mid(str,i,1))

if c<0 or c>255 then t=t+2 else t=t+1

if t>=length then

if flag=1 then

cutstr=left(str,i)&"..."

exit for

else

cutstr=left(str,i)

exit for

end if

else

cutstr=str

end if

next

else

cutstr=""

end if

end function

8樓:

left(rs("欄位名"), 10) 表示前10個字元

asp怎樣把一個資料庫裡面的內容顯示到一個頁面裡面啊

asp檔案中 ueditor如何顯示資料庫讀取的 內容

ASP讀取文字和寫入資料庫,asp讀取txt檔案並寫入資料庫

寫入資料庫 wend txtfile.close 也可以 直接連線資料庫,從文字中直接讀取 insert into tbl select openrowset microsoft.jet.oledb.4.0 text hdr no delimited database d tmp txt 另外還可以...

ASP中不重新整理頁面,動態讀取資料庫

id password id password step6 構造伺服器端程式 reg.asp code copy to clipboard dim regid,regpassword,str regid request.form regid regpassword request.form regp...

android如何將從資料庫讀取的資料顯示在listview中

老林上貓撲 final adapter adapter new adapter this,getdata r.layout.mainlayout,new string new int lv.setadapter adapter private list getdata null,null,null,...