问一个有关于iframe的问题
页面代码很简单,就是加了个iframe,并设置了target,可是为什么点击linkbutton就提示缺少对象的问题,点button就一点问题都没有呢?求助,难道这和浏览器有关么,我用的IE8
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm14.aspx.cs" Inherits="test.WebForm14" %>
<!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>
<base target="fftt" />
</head>
<body>
<form id="form1" runat="server">
<div>
<iframe id="newdownl" name="fftt" runat = "server" width="0px" height ="0px" ></iframe>
<asp:LinkButton runat="server" ID="LinkButton1" Text="复制" onclick="lbtnKeLong_Click"></asp:LinkButton>
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" />
</div>
</form>
</body>
</html>
------解决方案--------------------
<base target="_parent" />
设置成这样的话,模态窗口刷新不会弹出新窗口。