我在这个页面中有一个 Frm_MngAddGoodsGrp.aspx 页面有一个 iframe 标记,它引用一个页面“OpenDialog.aspx”
这个页面在我的项目中,我创建它来打开一个对话框文件并向用户预览图像我使用名为 httphandler 的文件“ImageRequestHandler.ashx”通过将图像控件“ImgPrv”的src属性更改为“ImageRequestHandler.ashx”来预览图像这工作正常用户可以在提交保存按钮之前打开文件并预览它
我还提到我使用会话来存储字节数组中的图像文件数据并将此字节数组保存到数据库这些都是关于用户想要将新数据插入数据库的时间。
但我的问题是用户想要查看之前存储在 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 文件中打开对话框
<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 .... 但它不起作用!
提前致谢