I use the following code and I not understand the following : 1. why I don't see the definition string name inside the txt file or the for statement since this is inside the tag 2.if I want to see it do I need to use different tag?
<#
string name = "Sop";
#>
Hello there ,<#=name #>
<#
for (int i = 0; i < 5; i++)
{
#>
Hi!
<#
}
#>
The output is
Hello there ,Sop
Hi!
Hi!
Hi!
Hi!
Hi!