Esempio n. 1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        String _conn = ConfigurationManager.ConnectionStrings["TopRockConnection"].ConnectionString;
        Events _ev = new Events(_conn);

        String _largepath = ConfigurationManager.AppSettings["EventLargeImgPath"].Replace("../", "");
        String _smallpath = ConfigurationManager.AppSettings["EventSmallImgPath"].Replace("../", "");
        String _thumbpath = ConfigurationManager.AppSettings["EventThumbImgPath"].Replace("../", "");
        DisplayResult(_ev.GetEventsXml(_largepath,_smallpath, _thumbpath) );
    }