これは私のダイアログがどのように生成されるかです:
$(function () {
$(".btnDialog").click(function() {
//e.preventDefault();
var $this = $(this);
$('<iframe id="PDFDialog" frameborder="0" src="' + this.href + '" />').dialog({
title: ($this.attr('title')) ? $this.attr('title') : 'External Site',
autoOpen: true,
width: 700,
height: 600,
modal: true,
resizable: true,
overlay: {
opacity: 0.5,
background: "black"
}
}).width(650).height(550);
return false;
});
});
<asp:label runat="server">
や< asp:button runat="server">
???などのサーバー コントロールをどこにどのように追加しますか?