クエリ文字列に応じて、ページの読み込み時にポップアップ div を表示したいという条件があります。クエリ文字列の削除= 1の場合のように、ポップアップを開く必要があります。次のリンクからモーダル ポップアップを使用しています。
SimpleModal Demos OSX Style Dialogを使用しています。助けてください。
私のコードビハインドコードは
if (!string.IsNullOrEmpty(Request.QueryString["delete"]) && !string.IsNullOrEmpty(Request.QueryString["u"]))
{
ScriptManager.RegisterStartupScript(this, GetType(), "test", "$('#osx-modal-content').modal({overlayId: 'osx-overlay',containerId: 'osx-container', closeHTML: null,minHeight: 80,opacity: 65, position: ['0',],overlayClose: true, onOpen: OSX.open,onClose: OSX.close }); ", true);
}