Reputation: 524
I have multiline textbox... if I type the HTML code snippet in the TextBox and click on submit button, then the HTML coding will run of Default .aspx with the dimension 920 * 220 pixels...
How to do that using asp.net (VB)
Upvotes: 0
Views: 912
Reputation: 410
You can create images on the fly using ASP.NET System.Drawing namespace. Within that namespace there are Text related methods which you can use to write text in your image.
Here is a short tutorial: http://www.aspnettutorials.com/tutorials/graphics/Drawing-Csharp.aspx
Upvotes: 1