Thanks Saravanan.
Your suggestion bet suited my application.
Now i have placed a image in the image button and if i click the image in the image button in grid, i ve set to navigate to zoom.aspx page where i placed a image tool. But in this, i am getting navigated but the image is not loaded in the image tool. I ve used java script to navigate to other page as,
function RunClientCode(e)
{
// var e1=e.substr(28,15);
var newwindow = null;
//var settings = 'width=650,height=6502,location=center,menubar=yes,toolbar=yes,scrollbars=yes,resizable=yes,status=yes';
var url = 'zoom.aspx';
newwindow = window.open(url);
if (newwindow.focus){ newwindow.focus(); }
}
in aspx page:
<asp:ImageButton ID="ImageButton1" runat="server" ImageUrl='<%# "Handler.ashx?autoid=" + Eval("Img_Id").ToString() %>' Width="100px"
Height="100px" Style="cursor: pointer" OnClientClick="return RunClientCode(this.src);" />
In zoom.aspx page:
<asp:image ID="Image1" runat="server"
ImageUrl='<%# "Handler.ashx?autoid=" + Eval("Img_Id").ToString()%>'
Height="650px" Width="100%" />
the above shoen is the coding. I ve used the handler page for this purpose.
Can you give me suggestion to load the image in the next page in image tool?
Regards
Gokul.N
Thanks and Regards,
GokulNath Nithy.
Gokul, if this helps please login to Mark As Answer. | Alert Moderator