>>863-871
そうか、みんな Value で分岐させるんだね。
漏れはいつも Name で分岐させてたよ。

<input type="submit" name="aaa" value="ボタン1">
<input type="submit" name="bbb" value="ボタン2">

-----------

If Request.Form("aaa") <> "" Then
 'A用の処理
ElseIf Request.Form("bbb") <> "" Then
 'B用の処理
End If