Not without seeing your code...
Here is the aspx page. There's a master page that I did not include,
so if you need a stripped down version of the aspx, let me know.
----------------------------------------
BEGIN of aspx
----------------------------------------
<%@ page language="VB" masterpagefile="~/dir_user_interface/
dir_master_page/DashboardMaster.master"
autoeventwireup="false" codefile="default.aspx.vb"
inherits="mod_10_20_10_070_default" %>
<asp:Content ID="conHead" ContentPlaceHolderID="cphDashboardHead"
Runat="Server">
<script src="../../dir_script/swfobject.js" type="text/
javascript"></script>
<script type="text/javascript">
function video_complete() {
if ($get('<%= btnContinueButton_1.ClientID %>').className
== "Visible") {
btn_Continue = $get('<%= btnContinueButton_1.ClientID
%>');
btn_Continue.disabled = false;
}
}
function endOfStepModal() {
var theBehavior = $find("EndOfStepOpenBehavior");
var theAnimation = theBehavior.get_OnClickBehavior();
theAnimation.play();
}
</script>
</asp:Content>
<asp:Content ID="conModal" ContentPlaceHolderID="cphDashboardModal"
Runat="Server">
<asp
anel id="pnlEndOfStepController" runat="server"
cssclass="Hidden">
</asp
anel>
<asp
anel id="pnlEndOfStepModal" runat="server" cssclass="Modal
EndOfStepModal Hidden">
<div class="MediumModal">
<div class="ModalHeader">
Congratulations, you have completed Step 1.
</div>
<div class="ModalScroll">
Your progress has been saved to your Journal. You can
review your journal at any time by
selecting the "My Journal" link under the RESOURCES
section of your profile.
<br />
<br />
<h3>Would you like to stop for now, or continue to
Step 2?</h3>
</div>
<%--<asp:button id="btn_logout" runat="server"
text="Logout" />--%>
<asp:button id="btnContinueButton_2" runat="server"
text="Continue" />
</div>
</asp
anel>
<%--path conflict open animation--%>
<cc1:animationextender id="aeEndOfStepOpen" runat="server"
targetcontrolid="pnlEndOfStepController"
behaviorid="EndOfStepOpenBehavior">
<animations>
<OnClick>
<Sequence>
<StyleAction AnimationTarget="pnlBlockAll"
Attribute="display" Value="block"/>
<StyleAction AnimationTarget="pnlEndOfStepModal"
Attribute="display" Value="block"/>
<Parallel AnimationTarget="pnlEndOfStepModal"
Duration=".2" Fps="25">
<Resize Width="532" Height="400" />
<Move Horizontal="114" Vertical="117" />
</Parallel>
</Sequence>
</OnClick>
</animations>
</cc1:animationextender>
<%--END path conflict open animation--%>
<%--path conflict close animation--%>
<cc1:animationextender id="aePathConflictClose" runat="server"
targetcontrolid="btnContinueButton_2">
<animations>
<OnClick>
<Sequence>
<Parallel AnimationTarget="pnlEndOfStepModal"
Duration=".2" Fps="25">
<Resize Width="1" Height="1" />
<Move Horizontal="-114" Vertical="-117" />
</Parallel>
<StyleAction AnimationTarget="pnlBlockAll"
Attribute="display" Value="none"/>
<StyleAction AnimationTarget="pnlEndOfStepModal"
Attribute="display" Value="none"/>
</Sequence>
</OnClick>
</animations>
</cc1:animationextender>
<%--END path conflict close animation--%>
</asp:Content>
<asp:Content ID="conContent"
ContentPlaceHolderID="cphDashboardContent" Runat="Server">
<asp:updatepanel id="udp_pageContent" runat="server">
<contenttemplate>
<div id="FlashContent">
Please download the flash player.
</div>
<script type="text/javascript">
var so = new SWFObject("../../dir_flash/demo1b/
demo1b.swf", "Intro", "640", "480", "8", "#ffffff");
so.addParam("wmode", "transparent");
so.write("FlashContent");
</script>
</contenttemplate>
</asp:updatepanel>
</asp:Content>
<asp:content id="ConButton" contentplaceholderid="cphDashboardButton"
runat="Server">
<asp:updatepanel id="upd_continue_buttons" runat="server">
<contenttemplate>
<asp:button id="btnContinueButton_1" runat="server"
text="Continue" Enabled="false" CssClass="Visible" />
</contenttemplate>
</asp:updatepanel>
</asp:content>
----------------------------------------
END of aspx
----------------------------------------
----------------------------------------
BEGIN of vb code behind
----------------------------------------
Partial Class mod_10_20_10_070_default
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Load
If IsPostBack = False Then
End If
End Sub
Protected Sub btnContinueButton_1_Click(ByVal sender As Object,
ByVal e As System.EventArgs) Handles btnContinueButton_1.Click
'might require saving user data
'open modal
ClientScript.RegisterStartupScript(Me.GetType(), "postBack",
"endOfStepModal();", True)
End Sub
Protected Sub btnContinueButton_2_Click(ByVal sender As Object,
ByVal e As System.EventArgs) Handles btnContinueButton_2.Click
Response.Redirect("~/page2/")
End Sub
End Class
----------------------------------------
END of vb code behind
----------------------------------------
Any suggestions you might have are greatly appreciated.
Thanks,
Marc