D Infosystems
D Infosystems

Reputation: 524

how to embed html code in asp.net (VB)?

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

Answers (1)

glowworms
glowworms

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

Related Questions