Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm pretty confused with how to mix razor and js. This is the current function I am stuck with:

<script type="text/javascript">

        var data = [];

        @foreach (var r in Model.rows)
        {
                data.push([ @r.UnixTime * 1000, @r.Value ]);
        }

If I could declare c# code with <c#></c#> and everything else was JS code -- this would be what I am after:

<script type="text/javascript">

        var data = [];

        <c#>@foreach (var r in Model.rows) {</c#>
                data.push([ <c#>@r.UnixTime</c#> * 1000, <c#>@r.Value</c#> ]);
        <c#>}</c#>

What is the best method to achieve this?

share|improve this question
Apparently the syntax highlighting is nice and confused with my <c#> tags as well :-P – Kyle Brandt Apr 10 '11 at 21:47
1  
Did you check the HTML output of this view? How does it look, and how you you want it to differ? – sukru Apr 10 '11 at 21:49
Throws up an error about Conditional Compilation so I can't see the HTML -- so I believe it feels part of this is C# code. – Kyle Brandt Apr 10 '11 at 21:52
It seems like a JavaScript error: webdeveloper.com/forum/showthread.php?t=99780 . What is the exact error message, and where do you get it? – sukru Apr 10 '11 at 21:54
I think this is a case where trying to mix JS and C# so closely would be a pain to read/maintain. I'm glad the compiler disallowed you from this code. :) – Jim Bolla Apr 10 '11 at 21:56
show 1 more comment

2 Answers

up vote 36 down vote accepted

Use <text>:

<script type="text/javascript">

   var data = [];

   @foreach (var r in Model.rows)
   {
      <text>
            data.push([ @r.UnixTime * 1000, @r.Value ]);
      </text>
   }
</script>
share|improve this answer
My Mistake, this works perfectly. – Kyle Brandt Apr 10 '11 at 22:07
4  
Razor works fine in Javascript blocks when executed but I hate how the syntax highlighting gets all sorts of confused. It highlights all the Razor code as invalid Syntax because it's stuck in Javascript mode I believe. – Alex Ford Aug 10 '12 at 16:29
what about if this code is in a bundle?? can I write code inside of a javascript file?? – nahum Jan 28 at 5:06

Inside a code block (eg, @foreach), you need to mark the markup (or, in this case, Javascript) with @: or the <text> tag.

Inside the markup contexts, you need to surround code with code blocks (@{ ... } or @if, ...)

share|improve this answer
Why do you say "mark the markup", this wouldn't be an issue if the content was, in fact, markup. – Max Toro Apr 10 '11 at 22:01
1  
@Max: Even though it doesn't look like markup, it is markup. (As opposed to server-side code) – SLaks Apr 10 '11 at 22:14
+1 for pointing out @: notation. – Seth May 24 at 9:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.