我在此页面中有Frm_MngAddGoodsGrp.aspx页面有一个iframe标签,它引用一个页面“OpenDialog.aspx”
这个页面在我的项目中,我创建它以打开一个对话框文件并预览图像给用户我使用名为“ImageRequestHandler.ashx”的httphandler文件通过将图像控件“ImgPrv”的src属性更改为“ImageRequestHandler.ashx”来预览图像这个工作正常用户可以在提交保存按钮之前打开文件并进行预览我还提到过我使用会话将图像文件的数据存储在字节数组中,并将这个字节数组保存到db,这些都是用户想要向DB插入新数据的时间。登记/>
但我的问题是用户想要查看之前存储在db中的数据的时间
我在Frm_MngAddGoodsGrp.aspx中有一个radgrid,我希望当用户点击一行radgrid时,IFRAME中的图像从db改为适当的图像,
我可以从Db读取图像的字节数组但是我不知道如何设置图像我也可以设置我的httphandler使用的会话变量,但我不知道如何在iframe标签内设置imageUrl图像。
我也在页面中使用简单的图像控件完成了它但我想在iframe中更改图像是否可能>如果有可能我该怎么办.....
在我的aspx文件Frm_MngAddGoodsGrp.aspx
中<iframe id ="OpenDialogControl" runat="server"
src = "OpenDialog.aspx" frameborder="0" name="Iframe1"
scrolling="no" height="110px" width="100px"></iframe>
在Frm_MngAddGoodsGrp.aspx背后的代码中
byte[] SelectedImage;
SelectedImage = (byte[])(ImageArray.Rows[selectedReceiptIndex][8]); //Image Array ->Grid Data table
Session["SessionImage"] = SelectedImage;
Random random = new Random();
ShowImage0.ImageUrl = Page.ResolveClientUrl("~/ImageRequestHandler.ashx?randomno="+ random.Next(0,1000).ToString());
//I have tried following codes to access ImagePrv Element in Iframe1 but i couldn't
//var image = OpenDialogControl.FindControl("ImagePrv") as Image;
在我的aspx文件Opendialog
中<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript" >
function getRandomNumber() {
var randomnumber = Math.random(10000);
return randomnumber;
}
function OnClientAsyncFileUploadComplete(sender, args) {
var handlerPage = '<%= Page.ResolveClientUrl("~/ImageRequestHandler.ashx")%>';
var queryString = '?randomno=' + getRandomNumber();
var src = handlerPage + queryString;
var clientId = 'ImagePrv';
document.getElementById(clientId).setAttribute("src", src);
}
function showName(object) {
document.write(object.id);
}
</script>
</head>
<body style= "margin-top:0px; margin-left:0px; padding-left:0px; padding-top:0px; ">
<form id="form1" runat="server" style= "margin-top:0px; margin-left:0px; padding-left:0px; padding-top:0px; ">
<div style= "margin-top:0px; margin-left:0px; padding-left:0px; padding-top:0px; ">
<img alt="" src="" id ="ImagePrv" runat="server"
style= "margin-top:0px; margin-left:0px; padding-left:0px; padding-top:0px; height: 120px; width: 110px;"/> </div>
<br /><br /><br />
<div style= "visibility:visible">
<cc1:AsyncFileUpload ID="AsyncFileUpload1" runat="server"
onuploadedcomplete="AsyncFileUpload1_UploadedComplete" ThrobberID="tid1"
onclientuploadcomplete="OnClientAsyncFileUploadComplete" />
</div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
</form>
</body>
</html>
在
后面的打开对话框代码中 public partial class OpenDialog : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
public static readonly string STORED_IMAGE = "SessionImage";
protected void AsyncFileUpload1_UploadedComplete(object sender, AjaxControlToolkit.AsyncFileUploadEventArgs e)
{
if (AsyncFileUpload1.PostedFile != null)
{
HttpPostedFile file = AsyncFileUpload1.PostedFile;
byte[] data = ReadFile(file);
Session[STORED_IMAGE] = data;
}
}
private byte[] ReadFile(HttpPostedFile file)
{
byte[] data = new Byte[file.ContentLength];
file.InputStream.Read(data, 0, file.ContentLength);
return data;
}
}
我有一个名为ImageRequestHandler.ashx的httphandler
ImageRequestHandler.ashx背后的代码
public class ImageRequestHandler : IHttpHandler, IRequiresSessionState
{
public void ProcessRequest(HttpContext context)
{
context.Response.Clear();
if (context.Request.QueryString.Count != 0)
//if (context.Request.Cookies.Count != 0)
{
var storedImage = context.Session[OpenDialog.STORED_IMAGE] as byte[];
if (storedImage != null)
{
Image image = GetImage(storedImage);
if (image != null)
{
context.Response.ContentType = "image/jpeg";
image.Save(context.Response.OutputStream, ImageFormat.Jpeg);
}
}
}
}
private Image GetImage(byte[] storedImage)
{
var stream = new MemoryStream(storedImage);
return Image.FromStream(stream);
}
public bool IsReusable
{
get { return false; }
}
}
我希望如果有任何javascript解决方案我已经尝试过document.geteleme ....但它不起作用!!
提前致谢
答案 0 :(得分:1)
即使您的iframe嵌入在Frm_MngAddGoodsGrp.aspx中,您也需要将Frm_MngAddGoodsGrp.aspx和OpenDialog.aspx视为单独的页面(它们是)。您不能直接从另一个页面的代码隐藏中更改一页中显示的内容。
也就是说,托管iframe的网页可以通过以下几种方式与iframe中托管的网页进行通信:
src
属性,因此可以将查询字符串中的值传递给子页面。 假设您的父页面知道新图像的id是什么,我会将iFrame的src属性设置为OpenDialog.aspx?imageId=12345
,并让OpenDialog.aspx从其查询字符串中检索该值并使用它来设置图像控件的ImageUrl
属性。