Click here to Skip to main content
15,890,973 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi every body.
How could i make a dynamic site with asp.net?
Posted
Comments
Kornfeld Eliyahu Peter 7-May-14 3:44am    
ASP.NET by nature IS dynamic - so your question is not a question at all. You may put some effort and be more specific!
rogerfederer670 7-May-14 3:47am    
I mean to make a website that the user can post asrticles and anything else.

1 solution

That really isn't a question we can answer in a small text box!

Articles etc aren't difficult: the simplest way is to let the user upload files which you store and then serve back to whoever is reading. Storage is also simple: a database or even direct to the file system of your server - but you will probably need to be careful about the content as when you serve it back HTML is executed, so XSS becomes a problem if you aren't careful. PDF documents for example are a good safe choice as XSS is not a problem.

Other than that, design your site. Work out what you want to provide, and how you are going to organise the display, then work out what storage and processing you need to provide behind it. But this kind of thing has been done loads of times before, so Google should be able to help you find some examples.

Good luck!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900