URL - How To Create A Blog In MVC

Nov 23, 2010

I have created a blog application with ASP.NET MVC and MSSQL. I must say, i really enjoyed the process of creating an application with ASP.NET MVC. Clean URLS(with URL routing), No view States and so on.

BUT i was wondering how would this would have been done if i choose web-form style coding? will the aspx would be created in the fly as i create a article.(take this url for ex: [URL]) though the URL is not clean but still makes sense. if yes then what about its corresponding cs file? if no how is the URL so clean?

View 4 Replies


Similar Messages:

Create A Blog Using 3.5?

Feb 1, 2010

Is there a way to create a blog using asp.net 3.5 in Microsoft Visual Web developer 2008 or 2010? Also, how do I make commenting, replying and posting only available to the user of my website?

View 9 Replies

C# - Where Should Create Development Blog

Aug 13, 2010

I'm looking for a blogging site to host my ASP.Net/C# (and possibly other web related programming) technical blog - where should I create such blog?

BTW, it's a shame that SO does not offer blogging services.

Note: I would create it on [URL], but it requires to be a highly active member on their site.

View 3 Replies

Web Forms :: How To Create A Simple Blog

Jul 9, 2010

I need to create a simple blog feature for my website. I have created a form that writes to an XML File, i now need to be able to display this file in a blog style, and possible add comments.

View 5 Replies

How To Create The Blog Application In Any Article

Apr 7, 2010

I want to add the creating Blog in my Web Application but i dont have where i can get start Any Article or hint will be apperciated

what is the Blog and why we need to create it ?

View 7 Replies

Web Forms :: How To Create Tag Cloud For Blog

May 7, 2015

How to create Tag Cloud for Asp.net Blog.

View 1 Replies

Architecture :: Create A Blog Block In Site?

Sep 3, 2010

I need to create a blog block in my site where it should update continuously. How start with it.

View 11 Replies

Web Forms :: How To Create A Fully Dyanmic BLOG Site

Apr 14, 2010

I'm want to make a BLOG site and that should be fully Dyanmic.Means from Questions to answers all should be fully Dyanmic but need admin approval to post.can you share some links where i can get more about this.

View 1 Replies

Web Forms :: Want To Create A Blog Type Of Web Application - Unable To Rewrite Url's?

Jan 28, 2010

I am just planning to create a blog type of web application. But i am not understanding how do i rewrite url's? say suppose site is xyz.com then when some user registers with name of T then he can visit blog at T.xyz.com? As you can see the url's will keep on changing dynamically.

I don't want to keep creating sub domains for each new user joined on the site. How can i achieve this?

View 1 Replies

Deep Linking - Finding Best Method For Website Where User Can Create Articles (like A Blog)?

Sep 25, 2010

I'm an ASP.NET newbie, but not so new at programming in general.

I'm creating a commercial website, and I want to allow an admin to add new articles (an article consists of text, images and various properties such as category).

I am trying to decide the optimal Modus Operandi. This site is commercial, so SEO is a major consideration. This means that I want each url to be "unique". That is, if someone navigates to an article about raccoons, he should be redirected to [URL]. This means - I can't have one page that loads the appropriate article dynamically a-la AJAX (gotta use deep-linking)

So how exactly do I do this? suppose the admin entered his text, uploaded the images and set the article properties. I create a new subfolder, save the images to the server (I understand that saving images to a DB is a big no-no), their addresses in a DB, and the content itself to the DB. But now what?

How do I go about creating the actual page?

Is there a function for creating a new aspx file? then what about its corresponding cs file? Or is it unwise to use aspx? Maybe plain html? but then how does it work with my site's master page? Or maybe just create another copy of a general aspx file which is populated with an article according to a parameter?

View 1 Replies

Write A Page Where User's Can Write A Blog Post And Publish It To The Blog?

Apr 2, 2010

I want to write a page where user's can write a blog post and publish it to the blog. I've downloaded blog engine .NET and looked at the code and I like the way they do it, but it's completely an overkill of what I need. What I need is only a title, author, date, and the blog post it self. I don't even want users to post comments or anything like that. My approach is to save all those blog post information into an xml and then when a page loads it loops around those xml files to show the blog post.

View 1 Replies

How To Read A Blog

Jan 12, 2010

I want to get content of my blog in my web site how can i do this.I have used dataset and its method XMlread but it doesn't word my blog's url ishttp://hari-ghan.blogspot.com

View 3 Replies

Web Forms :: Want To Make Dot Net Blog?

Apr 20, 2010

Guys I want to make a blog like http://www.hanselman.com/blog

is there is any solution like wordpress in dot net ? or we have to write our own code in it

what hanselman is using

View 1 Replies

Is It Possible To Integrate A WordPress Blog

Jan 27, 2010

Is it possible to integrate a Wordpress blog with ASP.NET If yes, then how?

View 2 Replies

Most Mature .NET MVC Blog Engine?

Mar 20, 2010

What's the best ASP.NET MVC based blog engine out there which is ready to deploy? I am guessing there are no MVC blog engines which are comparable with WebForms based blog engines like dasBlog, BlogEngine and subText? I think Oxite is a dead end and Orchid is more like a CMS.Looking for an engine which can do these:

RSS feeds support
anti comment spam functionality like support for Akismet
comment post approval support
Some kind of theming if possible

View 3 Replies

C# - Blog Engine 2.0 Error?

Feb 13, 2011

I AM getting an error while opening blogengine.net 2.0 in visual studio 2010 designer view.It is showing the master page error.But while executing the page it is loading correctly.

View 2 Replies

Integrating A Blog Into Website?

Mar 1, 2010

I have a website that I would like to integrate a blog into. I have seen lots of options available and not sure which one to jump into. What I want to do is have the most recent post on my home page and have users navigate to www.mysite.com/blog to see all posts. I would also like to have a sidebar on the homepage with links to 10 most recent posts.Where should I start? Should I use wordpress or an asp.net engine? Should I use rss feeds to get information to homepage?

View 4 Replies

Incorporate Blog Into 3.5 MVC Website?

Mar 26, 2011

I want to have a blog feature in my website.Website is built using .net 3.5 MVC with fluent Nhibernate.Don't want anything fancy, just something which lets me post content and can provide archives and grouping of content

View 2 Replies

MVC :: Handling Tags For Blog App?

Nov 26, 2010

In my blog application, I am storing the tags of a blog post in a column like this;

tag 1; tag 2; tag 3;

I will have hundereds of blog posts and I would like to display all tags in a page and I would like to open a page like ~/tags/tag-1

and under this page I would like to list the blog posts which has the value of the tag. in this case it is tag-1

what do you think is the best way here to handle this kind of thing?

View 3 Replies

How To Embed Google Blog In Website

May 5, 2010

I have a website and i have a Google Blog . i want my website to display the activities of my google blog in my website. What i want exactly is to embed my Blog into my ASP.NET website. This Should include the Comments and their Updates.

View 3 Replies

SQL Command For Recent Blog Comments

Jul 22, 2010

I have a BlogPost table by which i post blog on my website, this is the structure of BlogPost Table:

BlogPostID int Unchecked
LanguageID int Unchecked
BlogPostTitle nvarchar(200) Unchecked
BlogPostBody nvarchar(MAX) Unchecked
BlogPostAllowComments bit Unchecked
CreatedByID int Unchecked
CreatedOn datetime Unchecked
[code]...

View 13 Replies

How To Post Comments In Blog Style

Mar 25, 2010

I am working on a project. I need to allow user to comment on pictures - like a blog. For example, if you like a picture, you post your comment on the pictures and say why you like. When the user type a comment in the text box, how do I put it under the pictures? Also, if two people were to post comments, how do I know where the first comment ends and where to start posting the second comments? Also, how do I know when the page is full and start a new page?

View 6 Replies

Images In Blog Using Regex And Replace?

Dec 12, 2010

I want to change the way my blogs are displayed on my website. I currently use a seperate table in SQL to hold them and do a loop and replace.

All I really need to do is have a code that can be translated into real HTML in the blog code. I need to know the image name and the css class.

I was thinking is it possible to have somthing like this in a blog stored in the DB

<img L 1234.jpg> and use regex to match it and change it ton<img src="1234.jpg class="imgleft">

I know it looks like well why not just use the long code and not use regex, but I have a method that gets in the image path from the image name with padding. So in this case the image path would be 000/000/001/234/1234.jpg

I would have more then one occurance in the original string so would need to either somehow replace them all at once or use the regex to loop through untle they have all be matched

is something like this possible or do I need a different approach

View 3 Replies

Use Syntaxhighlighter For Show Code On Blog?

Jan 13, 2010

how to use syntaxhighlighter for show code on blog

when i test our blog with syntaxhighlighter he show some mistake

ex: <br/> & code is not look good so what i do for show code properly

View 3 Replies

Design A Blog With Full Functionality In .NET 3.5 Using C#?

Feb 18, 2010

I want to design a Blog with full functionality in ASP.NET 3.5 using C#.

View 6 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved