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
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.
I have a pretty slick website and I wanted to add a simple blog system to it, without too much work. I've looked into a few blog systems, but none of them seem to be simple almost control like systems.
In my web app tool I configure the sub-directory where blog engine is as an as an application.
This is what am getting Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS0103: The name 'ExtensionManager' does not exist in the current context
Source Error: [Code]....
Line 53: foreach (SortedExtension x in sortedExtensions)Line 54: {Line 55: if (ExtensionManager.ExtensionEnabled(x.Name))Line 56: {Line 57: a.CreateInstance(x.Type); [code]... Show Detailed Compiler Output:
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.
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?
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?
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
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?
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
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.
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.
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?
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
I have a blog page that has 20 posts each page.I'm using Listview for displaying posts. If I want to display comments for each posts, what would be the best way? My database stracture is as follow
Since I have many comments for each posts, I don't think I can join table.Only thing I can think of is that I can use DataReader and loop through the results in Listview Databound events.What would be the best way to achieve this?
I am using Label to display comments so in Csharp coding to display Comments on web page where One Default Image should be display , Name , Date , Comments .