增加在iframe中的iframe中打开DateTimePicker的示例代码,用于备忘一个在IE9下弹出窗无法打开的问题,目前出现条件未知
netwjx
authored at
2011-11-21 09:26:41
X
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="IE9DialogDateTimeTest_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
iframe
<div>
<iframe width="100%" height="400" src="iframe.aspx"></iframe>
</div>
</div>
</form>
</body>
</html>
|