开发者

Possible to do inline code in ASPX markup?

Is it possible to do things in a PHPish way in ASP.Net? I've seen <%= %> but I'开发者_StackOverflow中文版ve tried it and couldn't get it to work.

The PHPish equivalent of what I want to do is

<script src="<?php echo ResolveUrl("jquery/js/jquery.js"); ?>"></script>


Yes, it's quite possible. You should familiarize yourself with all the variations of the (so called) alligator tags though.

Put code in between <% %> blocks. The <%= %> variant is a shortcut for Response.Write, and is used as a shortcut for directly outputting a variable to the page.

The following should work, as long as ResolveUrl is returning a string. Notice there is no ";" to end the line though.

<script src="<%= ResolveUrl("jquery/js/jquery.js") %>"></script>
0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜