asp網頁間資料傳遞,asp 網頁間資料傳遞

2022-09-20 13:45:09 字數 908 閱讀 6631

1樓:全棧之巔

我寫最簡單的哈

a.asp:

b.asp

<%dim h,v

h=request("h")

v=request("v")

for i=1 to h

response.write ""

for j=1 to v

response.write "a"

next

response.write ""

next

%>呵呵 寫的很簡單 試試吧!

2樓:匿名使用者

a.asp:

行數列數

b.asp:

<%row= request("row")

col= request("col")

response.write ""

for i=1 to row

response.write ""

for j=1 to col

response.write "" & i & "-" & j & ""

next

response.write ""

next

response.write ""

%>以上。希望對你有幫助。

3樓:匿名使用者

a.asp

b.asp

<%col=request.form("col")row=request.form("row")for i=1 to row

response.write ""

for j=1 to col

response.write ""

next

response.write ""

next

%>

asp網頁session混亂問題

1 frame框架容易丟失session值,這是比較常見的問題。2 有可能是虛擬伺服器商的伺服器不穩定造成的,這樣很容易丟失session.建議 雖然session比較安全,但老是丟失也不是辦法,所以改用cookie吧 如何寫入cookies?response.cookies 欄位名 變數或字串,例...

iss無法顯示asp網頁

先做一個 html 試驗是不是iis 壞了。再 做一個簡單的一個asp 頁面 輸出一段文字測試是不是編譯檔案錯了。新建一個文字輸入 time 儲存後,把字尾的txt改成asp 如果看不到,請取消隱藏字尾名,在我的電腦,工具,資料夾選項裡面 然後放到iis根目錄下,然後預覽 如果沒報錯的話,那說明是你...

怎麼設定遠端ASP網頁和MYSQL資料庫的連線

資料庫管理後臺一般有標準連線字串 考貝一下直接應用到 中去 如果是要在虛擬主機上連線的話,首先你要確定你的虛擬主機裝了mysql odbc 驅動.否則,你再怎麼問都沒有用.如果裝了可以用下面的方式連線 set conn server.createobject adodb.connection con...