What is Razor Syntax
WHat is razor syntax
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Najna AbdullaPosted Mar 3, 2015, 2:32 AM
Najna AbdullaPosted Mar 3, 2015, 2:32 AM
@{ var myMessage ="Hello World"; }
The value of myMessage is:
@myMessage@{
var greeting = "Welcome to our site!";
var weekDay = DateTime.Now.DayOfWeek;
var greetingMessage = greeting + " Here in Huston it is: " + weekDay;
}
The greeting is:
@greetingMessageMain Razor Syntax Rules for C#
Manish Kumar ChoudharyPosted Feb 27, 2015, 12:53 AM
Go through followings link it will help you
http://www.asp.net/web-pages/overview/getting-started/introducing-razor-syntax-%28c%29