开发者

ASP.NET Setting Flash file path for Object tag inside a usercontrol

I have a an ASP.NET user control where i wanto run a flash movie using flashplayer.How can i set the path of flash movie file properly so that this would work in all pages irrespective of the folders. ie; it should work inside a page in FolderA and a page in FolderASub1 which is in FolderA and a page in the Root f开发者_如何学JAVAolder too.My Flash file resides in a Folder called FlashGallery in root.My User control resides in a Subfolder in Root.

I am not sure how can use ~ here .Since its(Object tag to play flash) not a server control. And infact i cant place the full relative path too.

Anythoughts ?


You can use a root-based path: /FlashGallery/movie.swf

Or you could generate a path string in your code, and place it in the aspx file like this:


Use an absolute path based off the root of your domain. Instead of using a relative url path like

"mymovieplayer.fla"

or

"../mymovieplayer.fla"

do this

"/flash/mymovieplayer.fla"


FYI: I use this (Free)Control: http://www.junasoftware.com/servercontrols/swfobject.net/download.aspx

You can use the '~' tilde to use relative paths to the site root and it will work on a master page, even if content pages are in different directories, you can use it like this:

<%@ Register Assembly="SWFObject.Net" Namespace="Juna.Web.UI" TagPrefix="SWF" %> . . .

Its FREEEEE!


Using a root based path is fine if you always know your site will be installed to the root, but this isn't realistic and best practise.

It would've been nice of we could use the server side relative path prefix of ~/ for the ... tag, but as you know it's not a user control so it just gets rendered out to the client as is. Below is a trick to allow you to specify the ~/ relative path for a client side script block.

I essentially use the VirtualPathUtility class and a protected method on the code behind of the page, master page, or control and it works very well for me.

Here's the method:

protected string GetPageRelativePath(string targetPath)
{
    return VirtualPathUtility.MakeRelative( Request.AppRelativeCurrentExecutionFilePath, targetPath );
}

And here's how you can use the ~/ prefix in the script block:

<script type="text/javascript" src='<%=GetPageRelativePath("~/Scripts/MyScript.js") %>'></script>

Essentially you could use this with other src paths, even paths to images or Flash files.

Hope that helps.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜