YaBlogEngine_src.zip
YaBlogEngine
YaBlog.BLL
bin
Debug
ClassDiagram1.cd
Properties
YaBlog.DAL
bin
Debug
ClassDiagram1.cd
Properties
YaBlog.DAL.csproj.user
YaBlog
Admin
App_Data
yablogDb.mdf
yablogDb_log.LDF
App_GlobalResources
Bin
App_Licenses.dll
FreeTextBox.dll
YaBlog.BLL.dll
YaBlog.BLL.pdb
YaBlog.DAL.dll
YaBlog.DAL.pdb
licenses.licx
YaBlogEngine.suo
|
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Text;
using YABlog.BLL;
public partial class ViewEntry : System.Web.UI.Page
{
EntriesAction ent = new EntriesAction();
CommentsAction com = new CommentsAction();
EntryBO entry = null;
CategoriesAction cat = new CategoriesAction();
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
if (Request.QueryString["id"] == null)
{
Response.Redirect("default.aspx");
}
}
entry = ent.GetEntryDetails(Convert.ToInt32(Request.QueryString["id"]));
Label1.Text = entry.Subject;
Label2.Text = "Category: " + entry.Category + ", Posted on: " + entry.Date.ToString();
string body = Format(entry.Body);
Literal1.Text = Server.HtmlDecode(body);
int commentCount = com.GetCommentsByEntry(Convert.ToInt32(Request.QueryString["id"]), Repeater1);
Label3.Text = commentCount.ToString();
}
protected void Button1_Click(object sender, EventArgs e)
{
if(TextBox1.Text == "" || TextBox2.Text=="")
{
return;
}
bool ret = com.AddComment(Convert.ToInt32(Request.QueryString["id"]), TextBox1.Text, Server.HtmlEncode(TextBox2.Text));
if (ret == true)
{
TextBox1.Text = "";
TextBox2.Text = "";
Page_Load(this, new EventArgs());
}
}
public string Format(string s)
{
string body = s;
body = body.Replace("\r\n", "<br/>");
body = body.Replace(" ", "  ");
return body;
}
}
|
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please
let us know and we'll add colourisation support for it.
I Started my Programming career with C++. Later got a chance to develop Windows Form applications using C#. Currently using C#, ASP.NET & ASP.NET MVC to create Information Systems, e-commerce/e-governance Portals and Data driven websites.
My interests involves Programming, Website development and Learning/Teaching subjects related to Computer Science/Information Systems.
Some CodeProject Achievements:
-
9th in Best Web Dev article of March 2013
-
7th in Best Web Dev article of January 2013
-
2nd in Best C# article of December 2012
-
5th in Best overall article of December 2012
-
5th in Best C# article of October 2012
-
4th in Best Web Dev article of September 2012
-
3rd in Best C# article of August 2012
-
5th in Best Web Dev article of August 2012
-
5th in Best Web Dev article of July 2012
-
3rd in Best Overall article of June 2012
-
2nd in Best Web Dev article of June 2012
-
5th in Best Web Dev article of May 2012
-
6th in Best Web Dev article of April 2012
-
4th in Best C++ article of April 2012
-
5th in Best C++ article of March 2012
-
7th in Best Web Dev article of March 2012
-
5th in Best Web Dev article of February 2012
-
7th in Best Web Dev article of February 2012
-
9th in Best Web Dev article of February 2012
-
5th in Best C++ article of February 2012