S
sjpg
Unregistered / Unconfirmed
GUEST, unregistred user!
第一页
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim years, months
years = Trim(year_select.SelectedItem.Value)
months = Trim(month_select.SelectedItem.Value)
Response.Redirect("WebForm6.aspx? Year = '" + CStr(years) + "' &
month = '" + CStr(months) + "'")
End Sub
第二页
Dim y, m
y = Request("year")
m = Request("month")
Response.Write
Response.Write(m)
不知道为什么,不显示。
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim years, months
years = Trim(year_select.SelectedItem.Value)
months = Trim(month_select.SelectedItem.Value)
Response.Redirect("WebForm6.aspx? Year = '" + CStr(years) + "' &
month = '" + CStr(months) + "'")
End Sub
第二页
Dim y, m
y = Request("year")
m = Request("month")
Response.Write
Response.Write(m)
不知道为什么,不显示。