Ok thank you. I follow what you are saying. One last question if you don't mind. I am reading the data from the SQL DB and using a ASP:Repeater control to display the results however it is not recognizing the new line character. I have included the code from the repeater control below.

Code:
<asp:Repeater ID="NewsDisplay" runat="server">
            
            <ItemTemplate>
                <b><&#37;# ((DateTime)Eval("Created")).ToString("MM-dd-yyyy") %></b>
                <br />
                <%# DataBinder.Eval(Container.DataItem,"Title") %>
                <br />
                <%# DataBinder.Eval(Container.DataItem,"Description") %>
                <br />
                <asp:HyperLink ID="LinkButton1" runat="server" NavigateUrl='<%# DataBinder.Eval(Container.DataItem,"URL") %>' Target="_blank" ><%# DataBinder.Eval(Container.DataItem,"URL") %></asp:HyperLink>
            
               
            </ItemTemplate>
     <SeparatorTemplate>
        <br><br>
        </SeparatorTemplate>
        </asp:Repeater>