asp VB で宣言された変数の使用方法は、従来の ASP の SQL ステートメントで使用できますか?
問題:
私は変数を持っています
dim username
username = Request.Form("username")
次に、以下に示すように、SQL ステートメントの where 句でこの変数を使用します。
adoRS.Source = "SELECT * FROM admin WHERE username= //This is where I want this variable to be..
正しい構文は何ですか? ありがとうございました