Architecture :: How To Develop Web Application With Sub-Apps

Jun 18, 2010

I'm starting to think about and develop an architecture for a big web application, and I wanted to get suggestions and/or recommendations on which technologies and/or frameworks to use.The application will be an Intranet-based web site using Windows authentication, running on IIS and using ASP.NET. It'll need to be structured as a main web application with sub-web applications. Essentially, the entire scope is a composite browser-based,Intranet application that is composed of discrete, functionally complete modules or sub-applications.

View 1 Replies


Similar Messages:

Architecture For A Web Application With Sub-Apps?

Jan 17, 2011

I'm starting to plan an architecture for a big web application, and I wanted to get suggestions and/or recommendations on where to begin and which technologies and/or frameworks to use.The application will be an Intranet-based web site using Windows authentication, running on IIS and using SQL Server and ASP.NET. It'll need to be structured as a main/shell application with sub-applications that are "pluggable" based on some configuration settings.

View 3 Replies

Architecture Suggestions / Recommendations For A Web Application With Sub Apps

Jan 17, 2011

I'm starting to plan an architecture for a big web application, and I wanted to get suggestions and/or recommendations on where to begin and which technologies and/or frameworks to use. The application will be an Intranet-based web site using Windows authentication, running on IIS and using SQL Server and ASP.NET. It'll need to be structured as a main/shell application with sub-applications that are "pluggable" based on some configuration settings.

The main or shell application is to provide the overall user interface structure - header/footer, dynamically built tabs for each available sub-app, and a content area in which the sub-application will be loaded when the user clicks on the sub-application's tab. So, on start-up of the main/shell application, configuration information will be queried from a database, and, based on the user and which of the sub-apps are available, the main or shell app would dynamically build tabs (or buttons or something) as a way to access each individual application. On start-up, the content area will be populated with the "home" sub-app. But, clicking on an sub-app tab will cause the content area to be populated with the sub-app corresponding to the tab.

For example, we're going to have a reports application, a display application, and probably a couple other distinct applications. On startup of the main/shell application, after determining who the user is, the main app will query the database to determine which sub-apps the user can use and build out the UI. Then the user can navigate between available sub-apps and do their work in each. Finally, the entire app and all sub-apps need to be a layered design with presentation, service, business, and data access layers, as well as cross-cutting objects for things such as logging, exception handling, etc.

Anyway, my questions revolve around where to begin to plan something like this application. What technologies/frameworks would work best in developing a solution for this application? MVC? MVP? WCSF? EF? NHibernate? Enterprise Library? Repository Pattern? Others? I know all these technologies/frameworks are not used for the same purpose, but knowing which ones to focus on is a little overwhelming.
Which ones would be the best choice(s) for a solution? Which ones work well together for an end-to-end design? How would one structure the VS project for something like this?

View 1 Replies

Architecture :: Going To Develop A Web Based Application With C#?

May 30, 2010

i am going to develop a web based application with c# but i am very upset that how to design a good pattern how to code to let the program more efficient.

View 3 Replies

Architecture :: How To Pass Data Between 2 Apps On Different Servers

Feb 23, 2010

i'm facing a problem with transfering data between two web applicatins on two different servers. For example on page A

I have a login box with LoginName textbox and Password textbox and Login button. What I am trying to achieve is that when i press Login button I will transfer data from Login and Password textboxes to page B and .net code on page B will try to validate the logging user. I was trying code like this but it won't works on page A

[Code]....

and on page B in Page_Load event

[Code]....

I was thinking of using Web Service between these apps, however i am not certain that it will works.

View 12 Replies

Architecture :: Single Sign On Web And Windows Apps?

Sep 18, 2010

We, at our company, are developing a file sharing application which will allow users to upload/download files. This application will be part of the suite of other applications. We will be adding a desktop client (windows app) which is an upload/download manager which will assist users to queue in multiple large files for upload/download. There are a couple of questions related to design for these applications:

1. We would like to implement Single Sign-On for all these applications (including desktop client). We would like users to login to web and once they do that, they can browse through applications without logging in again. We will be implementing a authetication service using WCF. The requirement is that we do not want to add authentication functionality to desktop client. So users will need to login to our web application. We can write cookie to user's machines and will work for web applications. Can the desktop client use the same cookie to autheticate itself? Or there are other ways we can achieve it? 2. We also do not want that when desktop client is uploading/downloading multiple files that its session is expired and the user need to re-authenticate through web. How can we achieve it? How does other Upload/Download Managers (like MS File Trasnfer Manager) work?

View 9 Replies

Architecture :: How To Develop An App Using 3 Tier Architecture

Aug 18, 2010

i want to develop an application in asp.net using 3 tier architecture .

i know that there are three layers

Data layerBusiness Layer

Data Access LayerBusiness Logic Layer Presentation Layer. I am confused between Data Access Layer and Business Logic Layer.

In data access layer we develop the property classes and main class function which returns datasets, datatables and data reader to Presentation layer.

what is the use of Business Logic Layer ? what actually we do in Business logic Layer
?? we can pass data directly from data access layer to presentation layer ?

View 6 Replies

How To Develop 3 Tier Architecture In Asp.net Using C#

May 31, 2010

can any one tell about 3 tier architecture in asp.net using C#How can i develop a project using 3 tier?

View 8 Replies

Architecture :: How To Develop MVP Architecture

Jun 21, 2010

I am using Technologies .NET3.5,C#.net,Sqlserver2005,WCSFWe want to develop a project in wcsf, will it be good and easy??.What is wcsf just briefly. How to develop MVP Architecture.Mainly I gather some information on wcsf, and i got some knowledge but i want sample application or project to get knowledge to develop a project.i am not getting any sample application google, and proper meterial also not there, is it failed or succeeded. if develop project in that will iget any problems in development.

View 3 Replies

C# - Late Binding In Child AppDomain - Develop A Plugin Architecture

Oct 1, 2010

I am trying to develop a plugin architecture in .Net. The application will be a .Net application. There will be directories which holds the plug-ins. Each directory will represent a plugin. Each plugin directory will also contain all the dependency dlls as well. The plugins need to be stored in separate AppDomain as the plugins may use the same assemblies, but different versions. As it iterates through the foreach loop in Init(), I get a System.IO.FileNotFoundException : Could not load file or assembly '[Assembly Name], Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.in _apDomain.Load() for assemblies that are not in the main project.

readonly private AppDomain _appDomain;
internal ItemModuleAppDomain()
{
AppDomainSetup info = AppDomain.CurrentDomain.SetupInformation;
_appDomain = AppDomain.CreateDomain("ChildDomain");
}
public void Init(string dllDir)
{
string[] dlls = Directory.GetFiles(dllDir, "*.dll", SearchOption.TopDirectoryOnly);
foreach(string dll in dlls)
{
_appDomain.Load(AssemblyName.GetAssemblyName(dll));
}

View 1 Replies

How To Work With A Web Application And Sub-Apps

Jun 18, 2010

I'm starting to think about and develop an architecture for a big web application, and I wanted to get suggestions and/or recommendations on which technologies and/or frameworks to use.The application will be an Intranet-based web site using Windows authentication, running on IIS and using ASP.NET. It'll need to be structured as a main web application with sub-web applications. Essentially, the entire scope is a composite browser-based, Intranet application that is composed of discrete, functionally complete modules or sub-applications.

View 2 Replies

Looking For Applications To Develop Own Application?

Nov 9, 2010

I am developing a web application for mortgage business related data (not mortgage calculation)in C#.( My job is to convert a classic asp app ..so workflow is already there. )Suggest sample application from where i can read and follow structure . It should have tabbed panes, user creation with different level of rights, complex web forms taking lots of input and using ajax.(even a bit of LINQ....as demanded by management!!) I found Nopcommerce interface very good. something similar but smaller in size. My ASP.net webforms knowledge is beginner to intermediate level.

View 1 Replies

C# - Looking For Right Approach To Develop A CMS Application?

Oct 25, 2010

I am developing a CMS application. Its a very huge deep and with full of configurable features. Current, I am developing it using Asp.net C#, form authentication and by creating UserControls.

There are lot of configurable items need to decide at run time as per user roles and some rules are predefined and some will be defined by Admin at runtime. The all information is stored in DB. I am getting lot of issues with USerControls. I consulted with some other guys who told my approach is wrong, I should go through DB data fetching. I really don't understand what is it? It is something like my all pages will be stores in Database and will construct at runtime and display as per rights?

View 2 Replies

How To Develop Multilingual Application

Jan 5, 2010

i am so much eager to develop the multilingual application. But i don't know how to start. how to create the application can i know what is the process to create the application. other wise give me a simple example.

View 1 Replies

Develop Scrapping In Web Application

Oct 5, 2010

I have develop lots of web aplication including web-site with paypal integration and now I want to develop scrapping in asp.net. Any one has knowledge about what is scrapping and how it is implemented in asp.net. I am new to this scrapping.

View 2 Replies

Application To Develop & Test On A Mac

May 11, 2010

I'm starting to learning some asp.net so I'm looking for an application to develop asp.net using a mac. I know dreamweaver can be used to write asp.net but I don't have any application to run a test server. ondering what my options are regarding developing and testing (not on a live server) using a mac.

View 2 Replies

Architecture :: How To Develop A Project(web Project) Based On The MVP Pattern

May 6, 2010

i know some thing about the MVP pattern... but when you want to develop a project(web project) based on the MVP pattern from where we need to start... i mean which component we need to start developing first ...
Model or View or Presenter... what are the points that we need to keep in mind....

View 4 Replies

How To Develop Window Based Application

Jul 18, 2010

I am trying to develop ASP.NET window based application and am struggling with it. I am using ASP.NET 2008 version.

this HTML command lang, I inserted lang=VBNET.

What does lang means and what is the purprose of it ?

Here are the HTML coding:

<form id="form1" runat="server" lang="VBNET" title="ONLINE ORDER REQUEST Screen">

View 10 Replies

How To Develop And Integrate A Chat Application

Jan 29, 2010

How can I develop a chat application using asp.net or How to integrate any chat api with asp.net application.

View 5 Replies

Want To Develop Point Of Sale Application ?

Oct 5, 2010

i am a c# dot net developer. i am given task to build a Pos application in c# for a grocery shop. i have no idea to develop it, please provide me if there is a tutorial, any class diagram or open source project

View 1 Replies

Mobiles :: How To Develop The Iphone Application

Mar 22, 2010

How to develop the IPhone Application using ASP.net. Which are the Softwares and Simulators we have to install to develop the application.

View 7 Replies

Develop News Update Application In.net?

Jan 7, 2011

i want to know how the news and update functionality add in my website using asp.net application by which we can update.news on daily basis,

View 2 Replies

How To Use JQuery And CSS In MVC 3 When We Develop Application Through Razor

Jan 17, 2011

when i am working with razor application i found that their is no intellisense work for jQuery even i put the Vsdoc file in Master [layout page]. i find a another probelm that in aspx i can find the classes i define in stylesheet by press CTRL + space after put class attribute for tag or element not they not work too.

are their any good way to use this both feature when we work using Razor

View 1 Replies

Web Development - How To Develop Mobile Application

Aug 6, 2010

how to develop asp.net mobile application? what steps I have to be follow from the beginning. Is there any template provided by Microsoft for visual studio 2008 ? I want to develop this using c# + asp.net in mobile environment.

View 1 Replies

Develop .NET Application For Free Method?

Jul 1, 2010

Are Microsoft “Express” editions free to develop on? s there software available that allows a developer to write .NET applications with SQL Server for free, meaning without buying Visual Studio and SQL Server.s long as you buy Windows web hosting (w/ support for .NET and SQL Server), is there software tools you can use to develop for free (Visual Web Developer? SQL Express?)

View 4 Replies







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