Recommended Blog Engine for ASP.NET MVC site [closed] - asp.net-mvc

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am building a website in ASP.NET MVC 4. I want a lot of control over this site. For this reason, I'm not using a full blown CMS. However, I would like to integrate a blog engine into my site.
What is the most recommended blog engine for an ASP.NET MVC site?
Thank you

oxite its an mvc blog engine. There are lots of other blogs that use web forms, which wouldn't be that hard to implement

Related

Drawing using asp.net mvc [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Is there any way to draw a simple image like some lines with asp.net mvc?
Any component or tool?
Actually user wants to draw a simple map and save it to database. Any idea?
I think they warn against doing it in ASP.NET but we've used the graphics libraries to do it before. http://msdn.microsoft.com/en-us/library/5y289054.aspx
try to understand mvc first, its a framework on top of ASP.NET not a client side tool. You could try HTML5 Canvas

Is there a web framework for creating a review/rating website? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am looking for creating something like mouthshut.com where users can rate products and services. Thanks.
You can create a review/rating website with any web framework available over there...
The important thing is what programming language do you like to build it.
For Example:
Python: Web2py, Django
Java/Scala: Play2,
PHP: YII
A good place to begin: http://en.wikipedia.org/wiki/Comparison_of_web_application_frameworks

MVC 4.0 Show simple grid [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm new to mvc, and i'm now trying to show a simple gridview which will be loaded from my sql server.
I can't even find the gridview in the toolbox.
i'm using the razor view engine.
example will be appreciated.
Thanks.
You mention mvc and toolbox. Those are incompatible concepts. You don't drag things out of the toolbox in MVC like you do in Web Forms. You type out various fields using html helpers.
While there is, in fact, a WebGrid available (quite a few actually), you would be better suited (at least initially) doing a manual table generation. Once you understand how it works, then you can move on to more advanced uses.
Any good MVC tutorial should have an example, such as MVC Music Store, or Nerd Dinner.

what's the best javascript UI framework integrated with ASP.NET MVC 3? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
What's the best JavaScript UI framework integrated with ASP.NET MVC 3?
jQuery is a must library now, and...
for UI framework, I have tried www.jqwidgets.com, jquery easy ui
now i am looking at KendoUI...
my expectation is, the UI framework should be a plus, the content(elements) will be generated by asp.net MVC, and the UI framework would make UI better, more friendly, more nice.
You can try the jQuery UI Extensions for MVC. See here: http://jmvcui.codeplex.com/

ASP.MVC and IFrame [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How to make asp.mvc work in iframe ? (for example i have simple page : silverlight menu and iframe ) .I know how to change iframe src from silverlight but I dont know how to make asp.mvc work in that iframe. Thanks for help
You could point the iframe source to your ASP.NET MVC application:
<iframe src="http://foo.com/yourmvcapp/home/index"></iframe>

Resources