私はjqueriesを初めて使用し、ダイアログボックスの呼び出しに問題があります。ユーザーが無効な検索クエリを使用し、開始日を入力しなかった場合。このjqueryコードがあることを確認してください
$(function(){
$("#dialog").dialog(function() {
$("#dialog").dialog()};
});
});
今、私はこれらのコードを vb に持っています:
Sub Subsearch()
If txtfrom.Text <> "" And txtto.Text <> "" Then
//some codes
ElseIf txtfrom.Text <> "" And txtto.Text = Nothing Then
//some codes
ElseIf txtfrom.Text = Nothing And txtto.Text <> "" Then
//call my JQuery
Else
// some codes
End If
End Sub
どうすればいいですか?