We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Testing #12100
@{ var total = 0; var totalMessage = ""; if(IsPost) { // Retrieve the numbers that the user entered. var num1 = Request["text1"]; var num2 = Request["text2"]; // Convert the entered strings into integers numbers and add. total = num1.AsInt() + num2.AsInt(); totalMessage = "Total = " + total; } } <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <style> p { margin: 6px 0; } </style> <script> window.alert('hello'); </script> </head> <body> <ul> @for (int i = 0; i < 10; i++) { <li>@i</li> } </ul> </body> </html>
Before:
Now:
The text was updated successfully, but these errors were encountered:
This issue was moved to demyte/language-cshtml#9
Sorry, something went wrong.
aeschli
No branches or pull requests
Testing #12100
Before:
Now:
The text was updated successfully, but these errors were encountered: