I am absolutely new to ASP.NET developmentent and have been working through some tutorials since now.
One thing I am missing is a java like way to externalize text to files, which can contain variables. In java I am using velocity for such a purpose.
I need this to for an user specific email.
In java I would load a a text file like this:
Hello Mr. $name,
Thanks for your registration. Your customer id is: $customerid
....
Now I I am able load the text file via velocity and replace the given variables very easyly.
Is there any way to do this in ASP.Net? If not, what would be the proper way to do this?