Hi,How to Print 1 to 100 numbers using MVC 4/5?
print format:
1 11 ........91
2 12 92
3 13 93
4 14
5 15
6
7
8
9
10 20 ........100
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.
Govinda Rajulu YemineniPosted Jul 22, 2015, 2:46 AM
If you find anything helpful please accept my answer.Govinda Rajulu YemineniPosted Sep 14, 2015, 7:22 AM
bhimani sambaPosted Sep 2, 2015, 7:45 AM
Jignesh TrivediPosted Jul 22, 2015, 2:43 AM
This can be achieve by using for loop in razor view
@for(var i = 0; i < 10; i++)
{
Line @i
}hope this will help you.
Manas MohapatraPosted Jul 22, 2015, 2:31 AM
");