ok, nevermind, I got it... if I use:
<%@ Page Language="
VB" AutoEventWireup="True" ValidateRequest="false" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Sub SubmitBtn_Click(ByVal sender As Object, ByVal e As EventArgs)
Span1.InnerHtml = "You wrote: <br />" + TextArea1.Value
End Sub
</script>
<html >
<head>
<title>HtmlTextArea Example</title>
</head>
<body>
<form id="form1" runat="server" style="border-right: maroon thin dotted; border-top: maroon thin dotted; margin: 2px; border-left: maroon thin dotted; width: 250px; border-bottom: maroon thin dotted; height: 250px;">
<h3>HtmlTextArea Example</h3>
Comments: <br />
<textarea rows="2" cols="20" id="TextArea1"
runat="server"/>
<br />
<input id="Submit1" type="submit"
value="Submit"
onserverclick="SubmitBtn_Click"
runat="server"/>
<br />
<span id="Span1"
runat="server" style="" />
</form>
</body>
</html>
I can get what i need, BUT i have to insert om the textarea : img src="images/image.jpg" (with the opening and closing < > ), I was trying to use ~/ or / before the image folder and forgoting to set ValidateRequest="false".
Well i hope this helps others, questions? post them. Thanks David, for the help.
Cheers,
Paulo