MVC2 Web App Capable Of Plugins And Themes Architecture

Oct 1, 2010

I am wondering if ASP.Net MVC 2 is a good choice for my current project. I want to build a social site that will allow for plugins or modular apps to be added on to it. An example of what I am talking about would be socialengine.net or even Joomla.

I was thinking that mvc areas would make good modular apps to plug into a core app but wondering if some sort of installer could be created that would wire things up automatically.

View 3 Replies


Similar Messages:

Architecture :: Plugins Architecture O Nasp.net Webforms?

Mar 9, 2011

It's Possing to make a web site a web site to be extended using plugins?im planing to make a bugtracker using the webforms in aps.netbut icant find a tutorial about how to make it extendable

View 3 Replies

C# - DDD Architecture For ASP.NET MVC2 Project

Oct 24, 2010

I am trying to use Domain Driven Development (DDD) for my new ASP.NET MVC2 project with Entity Framework 4. After doing some research I came up with the following layer conventions with each layer in its own class project:

[code]...
Currently my Repositories layer holds a reference to the Domain layer.From my understanding injecting a UserRepository to the UserService class works very well with unit testing as we can pass in fake user repositories.So with this architecture it looks like my Web project needs to have a references to both my Domain and Repositories layers.But is this a valid?Because historically the presentation layer only had a reference to the Business Logic layer.

View 3 Replies

C# - Dot Net Capable Build Servers?

Mar 3, 2010

I want to set up a continuous integration / build server for a C# ASP.net MVC project. I'm aware of cruise control.net, what other build servers are out there and what are the advantages or disadvantages of each?

Is there any particular one that is generally considered the one to have?

View 1 Replies

Web Forms :: "Pop Up" Capable Of Posting Back And Forth With The Server

Mar 9, 2010

I am trying to get a functionality where on a click event a popup comes up. And on this pop up there are controls like a text box,a button and a grid which can speak back and forth with the server. Also I need to get values from the grid when the pop up is destroyed.

View 1 Replies

Web Forms :: How To Use Wordpress Like Plugins

May 7, 2015

There is wide concept of download and install plugins in wordpress after installing plugins all the functionality of plugins embed with wordpress site and it starts functioning with out any error.

It there any concept of plugins in asp.net and how to do that like I have feedback form and i want to distribute it thorugh plugin for asp.net site and any one have asp.net site so download my plugin and install it and start using it.

View 1 Replies

What Are The Most Common And Widely Used Plugins For Hudson

Apr 16, 2010

I searched around stackoverflow and could not find any relevant questions.

View 1 Replies

C# - Creating A Web Application That Can Be Extended By Plugins / Modules?

Apr 5, 2010

I'm currently involved with developing a C# CMS-like web application which will be used to standardise our development of websites. From the outset, the idea has been to keep the core as simple as possible to avoid the complexity and menu/option overload that blights many CMS systems. This simple core is now complete and working very well.

We envisisaged that the system would be able to accept plugins or modules which would extend the core functionality to suit a given projects needs. These would also be re-usable across projects. For example, a basic catalogue and shopping basket might be needed. All the code for such extensions should be in seperate assemblies. They should be able to provide their own admin interfaces and front-end code from this library. The system should search for available plugins and give the admin user the option to enable/disable the feature. (This is all very much like WordPress plugins)

It is crucial that we attack this problem in the correct way, so I'm trying to perform as much due dilligence as possible before jumping in.

I am aware of the Plugin Pattern (http://msdn.microsoft.com/en-us/library/ms972962.aspx) and have read some articles on it's use. It seems reasonable but I'm not convinced it's necessarily the correct/best technique for this situation. It seems more suited to processing applications (image/audio manipulation, maths etc).

Are there any other options for achieving this kind of UI extensibility functionality? Or is the plugin pattern the way to go?

I'd also be interested if anybody has links to articles that explain using the plugin pattern for this purpose?

View 1 Replies

JQuery Menu Plugins Under MVC Only Work In Chrome Not In IE & FireFox

May 9, 2010

I was trying to prototype some jQuery-based menu into ASP.NET MVC. Just to name two examples here: [URL]Their demo page looks great, but when I integrate their sample code into MVC, the script no longer works in IE and FireFox, but it seems to work just fine under Google Chrome. Can someone kindly enough to point out what I missed? I will be honest here. I am still new to JavaScript. I have placed a copy of my VS2010 solution zip file @ [URL] Here is what I did. In the Site.Master, I have something like

<body>
<div class="page">{truncated...}</div>
<script src=[URL]" charset="utf-8"></script>
<asp:ContentPlaceHolder ID="ScriptContent" runat="server" />
</body>

And inside View file, I have the following

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<div id="original">
{some demo block, copied from javascript demo}
</div>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ScriptContent" runat="server">
<script type="text/javascript" src="<%= Url.Content("~/Scripts/jquery.columnview.js") %>" />
<script type="text/javascript">
$(document).ready(function () {
$('#original').columnview();
});
</script>
</asp:Content>

Compiled the code and ran it under IE. Ideally, it should work like the demo in [URL], but in reality, it only displays unordered list in plain view. (If you download the solution file and run it, you should be able to repro this as well). Next, tried with FireFox, not working either, same result as IE. Finally, when I try it under Google Chrome 4.1 (lastest version), and the script displays just fine.

View 2 Replies

AJAX :: JQuery Plugins Vanished After UpdatePanel PostBack

Apr 20, 2013

I have used jquery to design my control but when i place the controls in update panel then their design got disappeared i.e. the jquery got vanished. can u plz tell how can i resolve this issue.

I have to use update panel otherwise on selecting value from dropdown or checkbox then whole page get post back.

View 1 Replies

Jquery Validation Plugins In Conjunction With Server Side Fallbacks?

Jan 20, 2010

I like the look of some of the Jquery validation plugins as opposed to the ASP.NET validation controls.

However, one big benefit of the ASP.NET validators is they automatically work on the server side too. Hence saving time and saving validation getting missed when work is maintained.

I am wondering if anyone has come across any tool/plugin to assist in automated mapping of jquery client side validation to a server side fallback.

View 2 Replies

Website Makes Browser Load Unwanted (non-referenced) Plugins?

May 27, 2010

I've found that some of my ASP.Net web apps prompt the browser to load plugins that I'm not explicitely using and certainly haven't deliberately referenced in the project settings.Two that come to mind are for MS MediaPlayer and the "SVG Viewer for Netscape".The only commonality I've determined so far is that the two sites/apps affected both use Master pages (nested in some cases).We don't use SVG file types (just the normal mix of jpg/gif/png) and no video/audio (not yet anyway).Can anyone provide a hint as to where the references for these might be creeping in? e.g. Is it a server-level include? Or a .Net runtime default when using master pages?Does anyone else even experience this, or is it just me?

View 1 Replies

AJAX :: JQuery Plugins Not Working Inside Update Panel

Apr 24, 2014

I have a jquery asĀ 

<script type="text/javascript">
function usercellclick() {
$(document).ready(function () {
$("#<%=dgv_buslayout.ClientID%> tr:has(td)").hover(function (e) {
$(this).css("cursor", "pointer");

[code]....

it works only for first click.URL...

View 1 Replies

Custom Server Controls :: Create Plugins Or Add Ons For My Application Which Provide Search Logic?

Oct 23, 2010

I want to create Plugins or add ons for my application which provide search logic like google..

in asp.net is there any possibility then give me a answer>>

View 1 Replies

JQuery :: Does Autocomplete Plugins Works With 2.0 Witout AJAX Toolkit Or Ajax Extender

Aug 10, 2010

I am tring to use Jquery autocomplete into my asp.net 2.0 application, I have all necessary file in place, I tried to worked on , but it seems like this is not working,can some one tell me that is asp.net 2.0 application without using AJAX toolkit works with Jquery autocomplete or it does not work?Note: this is plain asp.net 2.0 web application, it is not using AJAX.

View 6 Replies

Architecture :: Articles/Links On Asp.Net Pipeline And Internal Request Processing Architecture?

Oct 4, 2010

I am looking details on the internal working of asp.net architecture. The topics need to include the following:

Asp.Net Thread/Application Pools HttpRuntime HttpApplication - When and how it is set up How HttpContext is set up How objects can passed along the pipeline using HttpContext.Current.Items Why does modification of static variables requires locks in ASP.NET (advanced)IIS 7 Integration Mode

View 1 Replies

C# - What Is CSS, Themes And Skin In .Net

Jan 6, 2011

I am a beginner in ASP.Net. I want to know what is CSS, Themes and Skin in ASP.Net? and How to create and use these things in ASP.Net? Please explain with simple example.

View 1 Replies

Using Different Themes For Different Customers?

Jul 23, 2010

What is the best practice to apply different themes to different customers with asp.net.

View 4 Replies

C# - Using Themes With URL Rewriting?

Jul 7, 2010

I am using the UrlRewriter.NET library to perform URL rewriting. I noticed that themes do not work properly as the browser tries to retrieve the CSS file incorrectly.

The link tag generated by ASP.NET automatically is as follows:

<link href="App_Themes/vertebrata/style.css" type="text/css" rel="stylesheet" />

URL typed into browser: localhost:1708/BloggingEngine/aa Displays fine

URL typed into browser: localhost:1708/BloggingEngine/aa/ Browser does not load the CSS file

I can probably fix the problem by prefixing a "/" before the URL in the href attribute, but this is dynamically generated by ASP.net depending on selected theme and I have no control over it.

How do I get ASP.net to load themes properly?

View 1 Replies

Architecture :: How To Design A Centralized Business Or Service Authentication Architecture

Sep 22, 2010

i want to create a centralised business or Service authendication architecture in .net. for example, we have a clients like c1, c2, c3, c4, ... etc. everybody logins seperatly as well as grouply. ie, if client "C1" logins [with login authentication] he can access c2 , c3, c4 also without login authendication. So its like a google. if we enters gmail account, we can access orkut, picasa like that.. i need the cetralised architecture.

And, client "c1" seperately asks seperately how will be the authendication architecture.

so give me the single solution for both these two scenarios. how will be the architecture for these two and how is the Data Base (Login) Structure.

View 3 Replies

Architecture :: Entity Model Design Framework And N - Tier Architecture

Dec 25, 2010

recently i've studied on ADO.NET's Entity Model Framework and say 'wow' as ORM is one of the fevourite pattern i practice..but suddenly i've come to an ambiguous situation when i'm going to start. i usually follow the following 3-tier architecture..

1. UI Layer
2. BLL - business logic layer
3. DAL - Data Access Layer
a. DTO / DAO
b. Gateway (contains the sql query/stored procedure and connection with DB)

now when i'm going to use the Entity Model Design,where the DBML/ .edmx File should be placed? Because many a times i'm using the DBML file as DTO because of the mapped objects.. in the same time, sometimes DBML ( .edmx file in .NET 4.0) contains CRUD methods and stored procedured method as well as methods with different selection operations,- which should be in Gateway. so where the .edmx file should be placed !?!! IN DTO namespace !? or in Gateway namespace!

moreover sometimes there is no need for the BLL which breaks the rules of inter-layer-communication (UI > BLL > DAL.Gateway)! what makes me confuse is, what should be the ideal n-tier architecture when i'll use the ADO.NET Entity Model Design Framework

View 4 Replies

How To Change Themes Asynchronously

Dec 25, 2010

I have a portfolio website I am building for fun, I am graduating about this time next year. I have added ASP.NET themes to this portfolio website, and I have added themes to other ASP.NET sites before. I really love the feature! I have been noticing though that other sites (not asp.net that I've seen) change "Themes" without the page refreshing and I understand its probably just changing which CSS the site is using. Is there a way to do something like this in ASP.NET 4.0?

I am just setting the default theme in the web.config, and then setting a session variable through a couple asp:ImageButton's, then in the Page_PagePrePreInit setting the page.theme to the session variable. This is my first time taking that route, I usually use "profiles" to save the theme info.

View 7 Replies

Themes - How To Change Whole UI On A Website

Feb 1, 2011

I am working on asp.net website and i want to implement themes on my site. If i select any theme then it will change whole UI not only colors. After Change it will show a new User interface. Like change in div size, width and location same for controls and same all html tag that is used in page.

I got lot of example of themes where it it changing only UI color.

View 1 Replies

Web Forms :: How To Change Themes In 2.0

Sep 30, 2010

Change themes in asp.net 2.0

View 3 Replies

Web Forms :: What Are The Benefits Of Using Themes

Feb 8, 2010

I think i understand the benefit of using themes but I want to be sure I understand correctly. I have previously used css to style my pages. I'm thinking about using themes in my next project. It provides a way to switch between the visual style of web controls and html elements. This could be done by allowing the user to choose a theme that is to their liking.

View 9 Replies







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