Hi,

Ill briefly explain my situtation. I am implemeting a small system that has an administrator side and a user side.
My user side has a page called news.aspx that simply contains basic lines. TO be exact:

news.aspx:



<html>
<body>
This is the news bulletin area
</body>
</html>

Here is what i wanna do:
FROM THE administrator, i want to be able to update the news on that page by allowing a the administrator to type in recent news and simply pressing a button "post" that will update news.apsx.
The update can occur in ONE of two ways:
1- replace the line "this is the news bulletin area" with the news the administrator posted
2- simply add above it the recent news (i would prefer this one since i can keep track of all the news posted)
.......
.......
.......
Let us say for the sake of conversation, the administrator page is called postnews.aspx. I have already linked the two sides (admin and user) and they are split with a login area, in which u can go either way.
How can i do what i need to do above?
(i think i might need a text box and somehow using c# re-write or write-to the news.aspx)

Thank you for your help.

Sam