vote up 0 vote down star
1

alt textHello!

I don't know what i should title this question regarding ASP.NET and saving a webpage layout. I will be referring to BBC just illustrate what i am after. http://news.bbc.co.uk/

The page will have around 10,000-20,000 visitors each day. I have one MS SQL 2008 database and i am programming ASP.NET (C#) 3.5.

I am building a magazine/paper like BBC but in a smaller format, now the administrator has to be able to style the general pages (like Economics, Politics etc) and place what articles are to be display and how to display them. On the BBC page (when i'm looking at it now) you have one big article on the first row, then 2 smaller on the second and third row, then a box with "FEATURES, VIEWS, ANALYSIS". I attached a picture with the areas painted in different colors. I wan't to allow the administrator to modify the appearance of the general pages and thus place the news in an arranged order.

  • The first problem i have is how to save it for optimized speed, both for fetching the webpage but also for editing it. So i thought that saving the page in XML in a XML document would allow me to add the functionallity that i want, since i can modify the XML and also add new tags if i expand the program. But the problem is then loading it to the client, i could create a .aspx page on the server when the administrator presses save or i could dynamically load it every time someone wants to display the webpage. Any ideas on performance?

So the flow is: 1) Administrator changes the layout on a specific page in the admin panel, he or she changes what article to show and where to place them. (Single, Next to another article etc) 2) The administrator then saves the changes. 3) The user can now view the updated layout 4) The administrator can load back the layout to make further changes.

  • The second problem is that i have small boxes on the right side, the contents in these boxes could either reflect the article/webpage or it could be something different. The administrator chooses what boxes to use when he/she creates the article. Now, how to save that information and load the boxes efficient. The boxes, when they are created, faces the same problem as above, how to save them in a good manner so the articles can load them fast. I was thinking about saving the information, like above, in a XML document. When the administrator creates an article i then save the box id-number in a certain table in the MS SQL 2008 database with an id-number to the correct article. But the same problem arises, should i dynamically load the boxes or create every box as a Web User Control and then load it, something like: WebControl_1234 boxControl = (WebControl_1234)LoadControl("Data path" + box_id_from_sqlserver);

Any ideas?

flag

2 Answers

vote up 0 vote down

Wow, this is a 'long question'. You might want to consider building it in a way you are most comfortable with e.g. data in DB, layout in aspx, dynamic/static WebControls etc.

Get it working before polishing, then run series of tests to have a idea of the performance and scalability. Caching mechanism can be a useful start.

This is by no mean a complete answer, just something to start the ball rolling.

link|flag
I was hoping to get a hint witch method that has best performance all-around before i started to program. – Patrick Sep 17 at 10:29
Well, my personal opinion is, there's probably no best answer. If your top priority is performance, you might have to forgo flexibility or speed to market. Performance is a tricky business, generic best practices do help, but a lot depend on the nature of usage, the type/amount of content, frequency of updates etc. If there's any hint I can offer, I would suggest three. First is good data schema, second is effective/optimal data fetching (e.g. your SQL queries) and thirdly, look into caching mechanism and strategies. Good luck! – o.k.w Sep 17 at 10:37
vote up 0 vote down

If performance is top priority, nothing beats static html.

So, what do you think of making a system so the Administrator can change the layout and then save the generated page as html, so the webserver can pick it?

From CodingHorror.com

What's Movable Type's performance secret? For the longest time -- almost 5 years -- I used the version I started with, 2.66. That version of Movable Type writes each new blog entry out to disk as a single, static HTML file. In fact, every blog entry you see here is a physical HTML file, served up by IIS just like it would serve up any other HTML file sitting in a folder. It's lightning fast, and serving up hundreds of thousands of pageviews is no sweat. The one dynamic feature of the page, comments, are handled via a postback CGI which writes the page back to disk as each new comment is added. (This is also the source of the occasional comment disk write collision, when two commenters happen to leave a comment at the same time.) Yes, it's a little primitive, but it's also very much in the spirit of KISS: why not do the simplest possible thing that could work?

link|flag
Something like it, i want the admin to be able to display the articles in different ways, like on the picture. So i predefine 4-5 different ways to display the articles. Problem is how to save it. How fast is XML loading for instance? If i saved the article display as XML and loaded the XML document every time the page was refreshed? How fast would it load? It would also require it to load the article descriptions from the database. – Patrick Oct 13 at 14:34
I was thinking in saving the generated HTML. Once the Administrador set up the ways he want the article, you can call ´WebRequest.Create´ on the ASP page and save the resulting HTML – Eduardo Molteni Oct 13 at 15:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.