Public Class WebForm4
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
End Sub
Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
SqlDataSource1.SelectCommand =
"SELECT * FROM movie where" + RadioButtonList1.SelectedValue + " LIKE '%" + TextBox1.Text + "%'"
GridView1.DataBind()
End Sub
End Class
目前的code
預計的版面配置
目標是RadioButtonList1選定的項目與TextBox1輸入的內容來搜索
按下搜尋後變成這樣
希望高手解答