Hoang,
One way of achieving this is to use a query string
Example would be on the page you have your form say the page name is
inputnews.asp
In inputnews.asp you would add
Code:
<%
Content = "" 'Clear the Content string
QStr = Request.QueryString("update")
if QStr="success" then
Content = Content & "<p>News input updated</p>"
Response.Write(Content) ' Paste the contents in page
%>
Then in your page that inputs the new form data after the update function add
Code:
<%
'Re-direct to inputnews.asp
response.redirect("inputnews.asp?update=success")
%>
That should provide the update message in inputnews.asp
Hope this helps
Aspless