Book Image

ASP.NET 3.5 Social Networking

By : Andrew Siemer
Book Image

ASP.NET 3.5 Social Networking

By: Andrew Siemer

Overview of this book

Table of Contents (19 chapters)

Solution


Now let's take a look at our solution.

Implementing the database

Let's take a look at what we need to implement the database.

Groups

Here is the Groups table structure:

The majority of this table is self-explanatory. However, one thing to be very aware of is the Body field, which is varchar(MAX) here. This means that people could technically put any amount of text that they want here. If this is not the functionality that you want to provide, either make this field smaller or put some form of client-side validation on this field to restrict its size.

You may also be wondering why we have a large Description field and an even larger Body field. The primary reason for this is so that we have public and private fields of text. A description could simply be the first paragraph of the Groups' page text, or it could be a brief synopsis. This totally depends on how you structure your output. I have set it up so that the description and body show up together, with the description on top.

Another...