Question : Autorefresh Of ASPX Page Inheriting a .DLL File

I am having an issue trying to auto-refresh an ASPX page that is inheriting a .DLL file I have in my /bin directory.  Here is the code for my ASPX page.

The MobiileTrend.DLL file has three functions that are called from Page_Load.  One checks the Browser type, if supported browser then next function grabs all the passed in values after the ? in the link.(example: http://mylink/default.aspx?tag=tag1&server=myserver), and the last one builds a Graphic file and renders it on the screen as a .GIF file.  It works fine if I hit the refresh button on the browser.  I have tried to use but it doesn't work.  Any other ideas how I can get this to auto refresh the page?      
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
<%@ Page Language="vb" AutoEventWireup="false" Inherits="MobileTrend.MobileTrend" %>
 

 


     Smart Phone Trend


    
    

Answer : Autorefresh Of ASPX Page Inheriting a .DLL File

I was able to use AJAX to create an ASPX page that called up the APSX page to redraw the image on a counter time interval.  
Random Solutions  
 
programming4us programming4us