方法很多,vb.net很簡單的比如: Form2窗體的Textbox2屬性設(shè)置為public,在Form1點擊button1.
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、成都小程序開發(fā)、集團企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了都勻免費建站歡迎大家使用!
Dim frm As New Form2
frm.TextBox2.Text = "123"
frm.ShowDialog() 可以取到form1里面窗體傳的值
還有一種方法:From1 :
Dim frm As New Form2
frm.Owner = Me
frm.ShowDialog()
from2 : Private frmParent As Form1
frmParent = Me.Owner
Me.TextBox2.Text = frmParent.TextBox1.Text
這是中文編碼你沒設(shè)置好。首先在Dreamweaver CS4里面,選擇》》編輯》》首先參數(shù)》》 左側(cè)選擇 新建文檔》》》默認(rèn)編碼》》簡體中文gb2312.ok新建文檔。把你原來的代碼粘貼進(jìn)去,最好重新寫一下。測試
%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ""
html xmlns=""
head
meta http-equiv="Content-Type" content="text/html; charset=gb2312" /
title解決中文亂碼問題/title
/head
body
%
if request.QueryString("j")="j" then
response.write (request.Form("user"))
end if
%
form name="form1" method="post" action="?j=j"
label
input type="text" name="user" id="user"
/label
label
input type="submit" name="button" id="button" value="提交"
/label
/form
/body
/html
用我直接給你寫的也ok
在發(fā)送頁面用get:如點擊button時response.redirect("接收頁的url"?canshu=textbox.text)
;
然后在接收頁面用Request.QueryString["canshu"].toString(); 這樣就接受到textbox里的值了。