Asp.net - The Perfect Web UI Framework (with Microsoft Stack?) - Architecture Question?
Mar 8, 2011
I'm looking for suggestions for the following issue, and I realize there is really not going to be a perfect answer to my question:I have a UI built in WinForms.NET (v4.0 framework) with WCF back-end and EF4 model objects, that I am looking to port to the web. UI is not huge and is not super complex and is structured well. But it is not a super simple system either. I am looking to pick a technology stack for the web-frontend that will target desktop & partially mobile platforms, provide a good development platform to build on, and facilitate code reuse across UI and back-end tiers...
[code]...
View 2 Replies
Similar Messages:
Mar 28, 2011
based on a recent article on MySpace blaming the microsoft stack not being able to easily scale here.Is this true? Is scaling an app built on the microsoft stack (asp.net mvc here) nearly impossible? does php/LAMP really scale better than microsoft?
View 1 Replies
Mar 2, 2010
Coming from Java background, I have understanding of what works in the Java world. Can you please translate this architecture stack into the .NET world? I am not looking for equivalents to specific layers of the stack, but a proven end-to-end stack that is known to work in the real world:
Architecture Stack:
Hibernate
Spring DAO [code]....
View 1 Replies
May 17, 2010
Let's say I asked Microsoft to describe the perfect, modern, Microsoft-based technology stack to power a standard e-commerce web site, which perhaps has a simple 2-tier web/database architecture. What would it be like? Yes, I'm just looking for a list of product / technology names.
For example, in the J2EE world, I might describe a stack that includes:
J2EE 6 standard
JavaServer Faces
Glassfish 3
MySQL 5.1.x
I'm guessing this stack includes some combination of .NET, SQL Server, ASP.NET, IIS, etc. but I am not familiar with this world. Looking for ideas on the equivalent in Microsoft-land.
View 8 Replies
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
Jul 21, 2010
I can find loads of articles about using the CD to load the Ajax framework, but I can't find anything regarding not using it.point me in the right direction.
ASP.Net 4
View 6 Replies
Apr 22, 2010
I have an application uploaded on a server which only supports Microsoft Report Viewer 8. my Application has been written with .Net framework 3.5. The Question is :
Is there a way for me to generate my reports using Microsoft Report Viewer 8 with my current application being with framework 3.5?
View 2 Replies
Feb 16, 2011
How can I draw a Radar Chart using Microsoft Chart Control for .NET Framework 3.5. I can draw "column" chart using the following code from MSDN. I could not find any example for Radar Chart.
Series ChampionshipsSeries = chtNBAChampionships2.Series["Championships"];
//Add data points
ChampionshipsSeries.Points.AddXY("Celtics", 17);
ChampionshipsSeries.Points.AddXY("Lakers", 15);
ChampionshipsSeries.Points.AddXY("Bulls", 6);
ChampionshipsSeries.Points.AddXY("Spurs", 4);
ChampionshipsSeries.Points.AddXY("76ers", 3);
ChampionshipsSeries.Points.AddXY("Pistons", 3);
ChampionshipsSeries.Points.AddXY("Warriors", 3);
View 1 Replies
Dec 15, 2010
Currently i am having an issue where we register scripts through the scripts collection on the scriptmanager, but sporadically, when the scripts are written to the page, they will be out of order, as in the ajax framework script(microsoftajax.js) is not the first script registered, instead it will be one of the others scripts in the collection. I looked at the code in reflector and i dont see how this happens since the scriptmanager injects the framework script into the first spot before writing them out to the page.
we are currently using asp.net 2.0 and ms ajax 1.0
View 2 Replies
Sep 25, 2010
Could somebody tell me what is the architecture of the .NET, and what is .NET framework and what are the very important things that I really need to learn? On googling I am not getting any satisfactory answers and I am getting more confused also.
View 1 Replies
Oct 7, 2010
i create 3folder in solution explorar,model view ,conroller in view i inclde .aspx formsin model class related to data base and in controller properties .so am i follwing mvc architacture .so what is diffrence b/w mvc architacture and mvc framework
View 1 Replies
Apr 1, 2011
I am redesigning a Solution's Architecture to implement SOA.
After doing the design changes I have come up with:
MySolution.Client.MyProject.Web ...... //ASP.NET WebSite
MySolution.Client.MyProject.Proxy .... //Service Proxy C# Library Project *[1]
MySolution.Service ................... //Service.cs for Service.svc is here
MySolution.Service.DataContract ...... //IService.cs for Service.cs is here *[2] [code]....
This project contains IService and Request/Response Classes
All methods in Service.cs takes the Request classes as input and return Response classes as output
Therefore this project is referenced by the 2 Client Projects(Web and Proxy), as it contains the IService and all of the Request/Response classes that will be required to communicate with Service.cs
*[3]MySolution.Model: This project contains the .edmx that is the Data Model of Entity Framework and some custom classes that are used in the project.
PROBLEM: Because I only use Request/Response classes to communicate between service and client, The MySolution.Service.DataContract project is only used by Service.cs and Repository.cs
And due to that all responses that Repository generates i have to map them to the properties of its respective response class (which make both the original returned entity, and the response class almost identical). But i am OKAY with it ...
e.g: GetCustomer() in Repository.cs method is called by Service.cs
GetCustomer() method in repository performs the LINQ query and return a "Customer" object
Service.cs then maps all the properties of "Customer" object to the "CustomerResponse" object
Service.cs then returns the "CustomerResponse" to the caller.
in this case most of the properties will repeat in both classes, if there is solution to this, its good, otherwise, I am fine with it.However, when Repository.cs's method GetCustomers() (Notice its not GetCustomer()) is called, it will return List of Customer object, and mapping this for return purpose would mean a "for loop" that iterates the collection and do the mapping ... this is NOT OKAY ...
is there any better way of doing this, considering I do not want to return "Customer" object without "CustomerResponse" as first of all it violates the SOA architecture, and secondly I don't want my Client Projects to have any reference to the Model or Repository projects.
View 3 Replies
Mar 10, 2010
I have developed an ERP module wihch runs on intranet. with ASP.NET /AJAX. It runs perfectly in my localhost. IIS. But when I try to run it on my development, It gives some errors of AJAX. undefined string literals. Microft ajax client-sisde framework failed to load. sys is undefined.. I've check my web.config file. But I cant find any problems into it.
View 8 Replies
Jun 17, 2010
This is a vb (2008) asp site.I'm using validators in a gridview control. The columns have been converted to templates and, when editing the data the validation works as expected.However, when the gridview first goes into Edit mode, even if the existing data fails validation, the validators don't highlight the errors UNTIL the data has been manually edited and the field loses focus. Only then do the validators correctly show the validation errors.How can I programatically force the validators to check the validation and display their messages when the gridview is first displayed, before the data is edited ?btw: The validators are warning the user about business rules so it's possible that data from the database may fail validation.
View 3 Replies
Mar 31, 2010
I am designing frameWork for an ERP application ijust have some quries regarding it
Some standards have to be set for this project ,need some help for it.
1)folder structure of the project for frame work 4.0
2)Layering should be done like(3 tier,n tier) if i want to Go for more than 3 layers what could be the other layers except BAL,DAL,Presentation.
3)should all the images be called from css,or some images can be called from the page it self.
4)what benchmarks should be set while writing Stored procs,to make uniformity and increase performance.
5)what securtiy messaures should be taken so that application remains free for intruders.
View 3 Replies
Oct 2, 2010
I am new to Entity frameworks-EF. As, EF is built on top of ADO.NET...If so, will there be any performance issue when we use it?Same way MVC also targets Test Driven , rapid application development only ..What speciality does it add for end-users?As per my understanding ASP.Net 2.0 itself is powerful without MVC and/or EF...
View 7 Replies
Dec 22, 2010
I have worked on larger projects in the past, and am working independently on a new project without the aid of the base code I have used in the past. Is there a recommended open source framework that contains the basic essentials (error handling, security, general structure) that can help me jump-start the development process. I will be using VS2010/Sql Server 2008/Windows Server 2008.
View 2 Replies
Feb 4, 2010
I have tried every single method in almost every post available on both Bing and Google. And I still get this error.I thought it was something in my website or web.config, so I opened up VS2008, selected to create a new ASP.NET Website and let it go..Here is the default.aspx page and web.config created by VS2008. Without modifying anything other than chaning the website properties to .NET 3.5 instead of .Net 2.0, I still get the error on this website when I hit F5. I have other websites with the ajax update panel and script manager on this server that work fine and have tried the web.config from them on a new project. But any new projects still do not work.I have verified that the settings for the working project as well as this new project in IIS are the same. Can anyone tell me why I am getting this error and theSys Undefined error?
<?xml version="1.0"?>
<configuration>
<configSections>
[code]...
View 2 Replies
May 19, 2010
I am thinking to use entity model as DAL, how should I create the BLL then? What kind of datasourceobject should I use in the asp pages?
I am looking for best practice to use Entity framework 2 in the three layers design. I had experience at dataset with three layers design.
Should I use objectdatasource at the pages for gridviews? My guess is that entitydatasource by passed the BLL which is not good, so the only option left is the objectdatasource.
Could and should my BL object inherit those entity model in the DAL, so I dont need to recreate their object's property?
View 4 Replies
May 17, 2010
I am having troubles understanding the purposes of using Factory pattern, I understand Factory pattern uses Factory class that has methods to return concrete objects. But why don't I simply use new opertor to create concrete objects? Some articles suggest Factory methods could return objects of different concreate classes, I can do the same thing by using switch statement.
Also are there classes in .Net framework already implementing Factory pattern? I think that will give me a better ideas why it is useful.
View 5 Replies
May 12, 2010
At work I need to create a new web application, that will connect to an MySql Database.
(So far I only have expercience with Linq-To-Sql classes and MSSQL servers.)
My superior tells me to use the entity framework (he probably refers to Linq-To-Entity) and provide everything as a service based architecture. Unfortunately nobody at work has experience with that framework nor with a real nice server oriented architecture. This speficic project I'm leading will be long-term, meaning multiple years, so it would be best to design it the way, that multiple target plattforms like asp.net, c# wpf, ... could use it)For now, the main target plattform is ASP.net
So I do have the following questions:
1) Where can I read best what's really behind service oriented architecture (but for now beginner tutorials work fine as well) and how to use it in best practise?
2) So far I can't see a real difference between Linq-To-Sql classes and the information I've googled so far on the 'entity framework'. So, whats the difference? Where do I find nice tutorials for it?
3) Is there any difference in the entity framework regarding the database server (MSSQL or MySQL)? If not, does that mean that code snipperts I will stumble across will word database independent?
View 3 Replies
Apr 3, 2011
I'm using the mock framework to unit test some methods. I came across some methods that use delegates. I did not find a way to setup these delegates to return the objects that I want. The mock framework does not support it as far as I know. Is this supported in other mock frameworks like nMock?
View 3 Replies
Apr 15, 2010
I have a webservice(Framework 3.5/VS 2008) that assembles data from 3 other webservices and puts it into SQL Server 2005. The data from these webservices is mutually exclusive. What is the recommended architecture for the same?
View 5 Replies
Feb 1, 2011
I am using the ADO.NET Entity Framework for loading data from the database. The classes are directly mapped to database tables in the database. The problem is that these classes are not optimal for binding to the UI elements. As a result of this I have some custom entities which are populated at the service layer and returned. It is these custom entities (classes) to which I bind the UI elements. My questions on this are1. Is populating these entities at the service layer the most appropriate way to do this. I personally do not think so because if we introduce some additional UI elements which need different entities then I have to modify the service layer again.2. What is the best approach/pattern to get this done.
View 2 Replies
Nov 9, 2012
Any good example of Three tier architecture in entity framework 4.0 ...
View 1 Replies