格式化jquery对话框的麻烦

时间:2013-02-16 15:11:08

标签: c# asp.net jquery-ui jquery-ui-dialog

我在使用asp.net用户控件获取模式对话框时无法正常显示。我已经尝试过设置高度和宽度,它一直在拧紧。它还一直显示在屏幕右下方。

enter image description here

if (AutoPopUp == true)
{

   string jquery = "$('#ShowPopUp').dialog({ modal: true, autoResize: true})
                                  .parent().appendTo(\"form\");";
   if (AskedAndAnswered == false)
   {
      jquery += "$('#ShowPopUp').dialog('open');";
   }

     ScriptManager.RegisterClientScriptBlock(this,this.GetType(),"popup",
             "$(document).ready(function(){ " + jquery + " });",true);
   }
}

我刚尝试在发布之前添加autoResize。我附上了一个屏幕截图,这样你就能看到它正在做什么。

有关如何正确显示此内容的任何建议吗?

0 个答案:

没有答案