Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a basic asp.net page with an image upload loaded through an iframe:
C#
<asp:Panel runat="server">
      <asp:TextBox runat="server" id="imgCaption" CssClass="imgCaption" PlaceHolder="caption(optional)" />

      <asp:FileUpload runat="server" ID="programmImages" Width="200px" CssClass="offScreen" />

      <asp:Button runat="server" id="hiddenImageUpload" OnClick="UploadImage" CssClass="insButton" Text="Upload" />
 </asp:Panel>


the image upload depends on the route data in order to upload but whenever i try to upload the image i get this error:

> Object reference not set to an instance of an object

on this line:

C#
var ProgName = Page.RouteData.Values["prog"].ToString()
;

this line works fine in other pages.

so how can i retrieve the route data through the iframe.

Thanks
Posted
Updated 14-Nov-12 12:02pm
v2

1 solution

If you're in an iframe, it's a different page. The values in the hosting page don't come in to it. You have to pass those values to the iframed page, on the URL as a query string parameter
 
Share this answer
 
Comments
aidin Tajadod 14-Nov-12 21:19pm    
Good catch. my 5.
bladde_89 15-Nov-12 13:46pm    
thanks

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900