Resolved Notice Board in ASP.NET

Anonymous

Well-known member
Joined
Sep 29, 2020
Messages
84
Programming Experience
Beginner
I want to create a notice/circular board like this

1641991200763.png


I want the user to click on any of the notice and then the detailed notice should appear in the next window.
From this link Online Notice Board

I have figured out that they are using windows.open and popup and they are setting the text in the code.

But i want to build an admin page. The admin should set the heading and type the notice which should get reflected in the main homepage.

Do I need to store the complete article/blog/notice in the database or is there any other way to achieve this purpose??
 
If you are absolutely sure that your web app will only be running on a single server, and only one admin will be updating things at any moment in time, you can just keep things in flat text files in the App_Data directory. If you want, you could upgrade to JSON or XML files instead of plain text files.

You will have to make sure that you have a plan to backup your App_Data directory in case the server blows up and you need to recover from such a disaster.
 
Back
Top Bottom