Advertisement
Guest User

Untitled

a guest
Aug 29th, 2014
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. Compiler Error Message: CS1513: } expected
  2.  
  3. Source Error:
  4.  
  5.  
  6. Line 329: #line hidden
  7. Line 330: __output.Write("rnttt</div>rntt");
  8. Line 331: }
  9. Line 332:
  10. Line 333: private System.Web.UI.Control __BuildControl__control7() {
  11.  
  12. Source File: c:WindowsMicrosoft.NETFrameworkv1.1.4322
  13. Temporary ASP.NET Filesxxxxxxxx450ffa78d46d847d
  14. k1gsz9dj.0.cs Line: 331
  15.  
  16. Show Detailed Compiler Output:
  17.  
  18. Show Complete Compilation Source:
  19.  
  20. <% ... some C# code.... { %>
  21.  
  22. markup(controls, html etc)
  23.  
  24. <% } %>
  25.  
  26. @{
  27. var currentNode = @linkedList.Find(@CurrentPage);
  28. if (@currentNode.Next != null)
  29. {
  30. var next = @currentNode.Next;
  31. <li>
  32. @next.Name
  33. </li>
  34. }
  35. if (@currentNode.Previous != null)
  36. {
  37. var prev = @currentNode.Previous;
  38. <li>
  39. @prev.Name
  40. </li>
  41. }
  42. }
  43.  
  44. // the below will cause CS1513 since namespace is missing '}'
  45. namespace y
  46. {
  47. class x
  48. {
  49. public static void Main()
  50. {
  51. }
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement