N
newsgroups.jd
Thanks for any help in advance...
Little background first. I have a report application that creates a
flash file for each day of the year. I want to place that file in a
content page without having to create a new content page for every day
- Im using the bewise flash control.
The master file has a calendar that the users will be able to select a
date from which should display the flash file in the content portion of
the page.
The application automatically creates the flash with the same naming
convention every day.
I have a master page with a calendar and dropdownlist control. my
thoughts are create a content page and then use a variable for the file
location of the flash file....
This is the content page currently
<%@ Page Language="VB" MasterPageFile="~/DailyLaborMasterPage.master"
AutoEventWireup="false" CodeFile="dailylabor3.aspx.vb"
Inherits="dailylabor3" title="Untitled Page" %>
<%@ Register Assembly="FlashControl"
Namespace="Bewise.Web.UI.WebControls" TagPrefix="Bewise" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
<Bewise:FlashControl ID="FlashControl1" runat="server"
Height="550px"
MovieUrl="~/Reports/DailyLabor/AllDepartmentLaborReports/01Mar06Daily&MTDLaborDetailsReport.swf"
Width="734px" />
</asp:Content>
If it is possible to do it this way, how do I use a valiable inside a
asp tag....
Example
MovieUrl="~/Reports/DailyLabor/AllDepartmentLaborReports/" &
Calendar1.SelectedDate & "Daily&MTDLaborDetailsReport.swf"
Thanks
JD
Little background first. I have a report application that creates a
flash file for each day of the year. I want to place that file in a
content page without having to create a new content page for every day
- Im using the bewise flash control.
The master file has a calendar that the users will be able to select a
date from which should display the flash file in the content portion of
the page.
The application automatically creates the flash with the same naming
convention every day.
I have a master page with a calendar and dropdownlist control. my
thoughts are create a content page and then use a variable for the file
location of the flash file....
This is the content page currently
<%@ Page Language="VB" MasterPageFile="~/DailyLaborMasterPage.master"
AutoEventWireup="false" CodeFile="dailylabor3.aspx.vb"
Inherits="dailylabor3" title="Untitled Page" %>
<%@ Register Assembly="FlashControl"
Namespace="Bewise.Web.UI.WebControls" TagPrefix="Bewise" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
<Bewise:FlashControl ID="FlashControl1" runat="server"
Height="550px"
MovieUrl="~/Reports/DailyLabor/AllDepartmentLaborReports/01Mar06Daily&MTDLaborDetailsReport.swf"
Width="734px" />
</asp:Content>
If it is possible to do it this way, how do I use a valiable inside a
asp tag....
Example
MovieUrl="~/Reports/DailyLabor/AllDepartmentLaborReports/" &
Calendar1.SelectedDate & "Daily&MTDLaborDetailsReport.swf"
Thanks
JD