from:http://www.mikesdotnetting.com/article/258/usage-of-the-at-sign-in-asp-net

Thursday, January 22, 2015 1:54 PM

The number of places where you might use or encounter the @ sign in ASP.NET has grown over the last few years and its exact purpose in all circumstances still seems to cause confusion. Here's an overview of the most common places that it crops up, and guidance on its correct usage.

Razor Syntax

Razor was launched as a new templating syntax with the introduction of the ASP.NET Web Pages framework. A new view engine was added to MVC 3 that makes use of Razor. Razor enables mixing server-side code with HTML mark up to generate an HTML response that the framework sends to the browser. The @ sign has four uses in Razor:

  • To open a code block
  • To denote an inline expression or statement
  • To render the value of variables
  • To render single lines of content that contain plain text or unmatched HTML tags

Code blocks are sections of C# code that do not include any output to be rendered. They are usually positioned at the top of the Web Page or View and typically contain the logic for processing a page in Web Pages, or simple view-specific instructions in MVC. Code block start with the @ sign followed by an opening curly brace, and end with a closing curly brace:

@{
ViewBag.Title = "Edit";
Layout = "~/Views/Shared/_EditLayout.cshtml";
}

The content within the code block is standard C# code. A common mistake is to prefix variables declared within the code block with the @ sign. This is not necessary.

Inline expressions or statements are snippets of C# code appearing within HTML. Most often, these are used to make decisions on what to render based on conditions, or to iterate collections for display to the browser:

<ul>
@foreach (var item in rows)
{
// do something
}
</ul>

Nested expressions or statements do not start with an @ sign...

<ul>
@foreach (var item in rows)
{
if (item.Equals(x))
{
// do something
}
}
</ul>

...unless they are separated from the outer expression or statement by unmatched tags

<ul>
@foreach (var item in rows)
{
<li>
@if (item.Equals(x))
{
// do something
}
</li>
}
</ul>

The @ sign is used in Razor to render the value of variables, expressions and statements to the browser:

@DateTime.Now <!-- renders the current time to the browser -->

@(someCondition ? x : y) <!-- renders the value of x or y to the browser –>

@Html.ActionLink("Back to List", "Index") <!-- renders a hyperlink -->

Variables within expressions and statements should not be prefixed with the @ sign.

If you wish to render plain text or unmatched tags while inside a statement block, you use the @ sign followed by a colon to tell Razor that what follows is not C# code:

@if (item == x) // plain text
{
@:The time is @DateTime.Now
}
@if (item == x) // unmatched tags
{
@:<ul>
}
else
{
@:<ol>
}

Identifiers

An identifier in C# is the name given to a namespace, class, variable, property, method, interface etc. Rules govern what makes a valid identifier. It is permitted to use a C# keyword as an identifier, but if you do, you must use the @sign to prevent compile time errors. You are advised against using a keyword as an identifier, but there are times when you cannot avoid doing so.

Some overloads of the HtmlHelper classes (Web Pages and MVC) accept an object to represent the HTML attributes to be rendered as part of the tag that the helper represents. The following example adds a styleattribute to a text input and sets its value to width:100%;:

@Html.TextBoxFor(model => model.FirstName, htmlAttributes: new { style = "width:100%;"})

When you do this, you are creating an anonymous type with a property called style to represent the HTML attributes. If you want to set the CSS class attribute via this method, you need to add a property to the anonymous type called class - which is a C# keyword. Therefore you must use the @ sign to enable the use ofclass in this case:

@Html.TextBoxFor(model => model.FirstName, htmlAttributes: new { @class = "full-width"})

A mistake I see repeated quite often in the ASP.NET forums is to apply the @ sign to all other properties of the anonymous type, which is just not necessary. Some people even think that the @ sign used here is part of the Razor syntax rules. It's not. It's usage here preceded Razor by a long way.

Verbatim String Literals

verbatim string literal in C# consists of the @ sign followed by a literal string in double quotes and terminated with a semi-colon e.g.

var s = @"Hello World";

Two benefits of using a verbatim string literal include the fact that you only need to escape double quotes (by doubling them); and the string can span multiple lines in code without requiring continuation characters. For these reasons, verbatim string literals are most suitable for representing paths (which may otherwise need their slashes escaping) and regular expression patterns (which also may otherwise require backslashes to be escaped).

Regex re = new Regex(@"\w\d{1,3}\.\d{1,3}\.\d{1,3}.\d{1,3}\w");

They are also useful for representing large blocks of text if they need to be included in code in a readable manner, such as SQL statements that might be used in Web Pages applications:

var sql = @"SELECT
p.ProductName,
o.UnitPrice,
o.Quantity,
(o.UnitPrice * o.Quantity) - (o.UnitPrice * o.Quantity * o.Discount) As TotalCost
FROM OrderDetails o
INNER JOIN Products p ON o.ProductID = p.ProductID
WHERE o.OrderID = @0";

The use of the @ sign in this context once again has nothing to do with Razor syntax.

Summary

If you have ever wondered when and where you should be using the @ sign in your ASP.NET code, hopefully this article has helped to resolve your confusion.

最新文章

  1. Adobe Illustrator里使用fontawesome矢量图标
  2. AC自动机基础知识讲解
  3. repo sync下载脚本
  4. iOS案例:读取指定txt文件,并把文件中的内容输出出来
  5. Linux大文件分割split和合并cat使用方法
  6. 终于把你必须知道的.NET看完了
  7. binary 和 varbinary
  8. Altium Designer 特定网络取消 remove loops
  9. Qt 获取字符串的UTF8编码值
  10. [C++]C++中的运行时类型检测
  11. JavaScript面向对象编程(9)高速构建继承关系之整合原型链
  12. 浅谈Java中的equals和==与hashCode
  13. python中删除某个元素的3种方法
  14. C#读写Excel的几种方法
  15. UEditor单图上传跨域问题解决方案
  16. Linux包系列的知识(附:Ubuntu16.04升级到18.04的案例)
  17. python 中: lambda
  18. 背水一战 Windows 10 (45) - 控件(图标类): IconElement, SymbolIcon, FontIcon, PathIcon, BitmapIcon
  19. drupal 去掉视图中字段默认的HTML标签
  20. Linux中脚本

热门文章

  1. bzoj 2865 字符串识别——后缀数组
  2. laravel 中config的使用
  3. 浅谈FPGA资源评估
  4. go基本数据类型与运算符
  5. Ubuntu 下使用 mutt 和 msmtp 发送 Gmail 邮件
  6. ES之四、Elasticsearch集群和索引常用命令
  7. php代码中临时开启错误调试
  8. Flask之测试与部署
  9. javascript第三节
  10. alsa-lib及alsa-utils成功移植(原…