用查询字符串值替换嵌入的代码

时间:2014-03-22 13:00:02

标签: c# javascript html asp.net

我的代码:

<embed type="application/x-shockwave-flash" id="flash-player-embed" wmode="transparent" src="http://static.xvideos.com/swf/xv-player.swf" quality="high" allowfullscreen="true" allowscriptaccess="always" flashvars="id_video=7966" width="588" height="476">    

我想在上面的代码中分配查询字符串的值,如下例所示:

 < flashvars="id_video=Request.QueryString["vid"]" > 

我想在7966的位置分配从查询字符串收到的值。我该怎么办?

1 个答案:

答案 0 :(得分:1)

试试这个:

flashvars='id_video=<%# (Request.QueryString["vid"] != null) ? Request.QueryString["vid"].ToString() : ""%>'