How can i call the variable picSize_witdh
<script language="C#" runat="Server">
void Page_Load
(object sender, System.EventArgs e)
{
int picSize_width = 320;
int picSize_Height = 215;
string Location,ImageName;
Location = Request.QueryString["Location"];
ImageName = Request.QueryString["Pic"];
}
</script>
<html>
<img border="1" height="<%=picSize_Height%>" src="../images/Image_manager.gif">
</html>
Best regards Hlynur
<script language="C#" runat="Server">
void Page_Load
(object sender, System.EventArgs e)
{
int picSize_width = 320;
int picSize_Height = 215;
string Location,ImageName;
Location = Request.QueryString["Location"];
ImageName = Request.QueryString["Pic"];
}
</script>
<html>
<img border="1" height="<%=picSize_Height%>" src="../images/Image_manager.gif">
</html>
Best regards Hlynur