页: 1
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="SectionPreview.aspx.vb" Inherits="Management.SectionPreview" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<link rel="stylesheet" type="text/css" href="Style_1.css" />
<link href="css/jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="javascripts/jquery.js" type="text/javascript"></script>
<script src="javascripts/jquery-ui.min.js" type="text/javascript"></script>
<title>Addition Data Fields Section Preview</title>
<style type="text/css">
@import url( Style_1.css );
.style1 {
text-align: center;
}
.footerMenu {
font: xx-small serif;
color: #336699;
text-decoration: none;
}
.CustomSize
{
height: 100%;
width: 100%;
}
我把这pop成一个路窗,点击,该代码执行如下:
function showpage1() {
var mydiv = $( #<%=poppage.ClientID%> );
mydiv.dialog({
autoOpen: false, modal: true, title: Data Field Preview , width: 75% ,
position: { my: top , at: top+150 },
buttons:
[
{text: "Close", click: function() {$(this).dialog("close")}}
]
});
// Open the dialog
mydiv.dialog( open );
}
我需要使小组的宽度和高度与网页相同。 我迄今所尝试的一切都没有任何效果。 该网页将配备用户定义的监控、电子计算机、文本箱、下级清单等。 然而,我无法让小组扩大到该页的宽度。 而且,我和小组一样,在用户转播该网页时,只要有可能,就自动转播。 我也找不到这样做的任何方法。 我做了什么错误?