ASP.NET is a web application framework developed and marketed by Microsoft to allow programmers to build dynamic web sites and web applications. It was first released in January 2002 with version 1.0 of the .NET Framework, and is the successor to Microsoft's Active Server Pages (ASP) technology. ...
4
votes
2answers
435 views
A design pattern for data binding an object (with subclasses) to asp.net user control
I have an abstract class called Address and I am deriving three classes ; HomeAddress, Work Address, NextOfKin address.
My idea is to bind this to a usercontrol and based on the type of Address it ...
0
votes
2answers
178 views
How to make ASP .NET MVC website have a continuous process running?
This website is supposed to be a game where the players have some 'buildings' and these buildings produce resources. E.g. an iron mine may produce 30 pieces of iron ore per minute and automatically ...
-1
votes
1answer
225 views
Migrating from PHP to ASP .NET MVC [closed]
I plan on migrating a website from PHP to ASP .NET MVC. However, since the website is large and this migration can't be done in a short time I plan to use both MVC and PHP pages together. So the idea ...
3
votes
1answer
494 views
One Login amongst multiple ASP.NET MVC applications Questions
I have been working on an ASP.NET MVC 4 application that uses forms based authentication. Users are validated against a membership provider based on a provider selection on the login form. For ...
2
votes
5answers
380 views
Should heavy binary files not be stored in database? [closed]
I was asked an interesting question: Should a database contains all data? Or heavy binary files should be stored in file system?
Example of heavy binary files : videos or heavy pdf files (+200 MB)
...
0
votes
1answer
157 views
Other than MSMQ, what is the easiest messaging queue to get installed on Windows? [closed]
When working with a fairly average team (limited knowledge with the latest and greatest), what would be the most ideal messaging queue to use in a windows environment?
Something that installs easily ...
2
votes
2answers
176 views
Overcoming circular reference
I am working on an asp.net MVC web application which contains several projects.
One is BusinessObjects, which contains business logic / processes.
Another is EmailGeneration which is used to send ...
4
votes
2answers
431 views
How does authentication work with ASP.NET (using Live ID and\or Windows Authentication)
I'm primarily a .NET desktop app programmer. Coming into the web world has been difficult. I'm trying to convert one of my Silverlight apps into HTML. But I'm having a hard time figuring out the ...
2
votes
1answer
347 views
Newbie ASP.NET developer being forced into MVC4 with WebForms
I recently got hired on as a new ASP.NET developer (C# code behind). When I arrived, I was told that they were moving to MVC 4, and so I bought two books on that. However, the other day I learned ...
3
votes
1answer
205 views
Were there major changes in testing practices in ASP .NET between 3.5 and 4.5?
Obviously, testing methods are language-independent. An integration test stays an integration test no matter what the technology.
But platforms implement some kinds of testing support. And the ...
2
votes
2answers
184 views
Different Project Type in a Single Website
I have developed a website in asp.net and I have some additional tasks, improvements to develop. In order to get experience in asp.net/mvc, I want to create an admin panel using asp.net mvc.
Is this ...
0
votes
0answers
24 views
multiple client same project [duplicate]
Possible Duplicate:
multiple client multiple project
Sorry I will try to keep it simple because I am not good at English.I have 3 project files. They are all same projects but used by ...
2
votes
1answer
50 views
Reporting and handling asynchronous process errors to a client
I have a product with two separate applications. The core of the product lives in the database (oracle) and runs according to a schedule. The other is a client application (currently ASP.NET MVC3) ...
1
vote
1answer
306 views
The Jitter (the just-in-time compiler) in ASP.NET [closed]
I know that C# gets compiled to an IL then after that to a machine code depending on the machine using just-in-time compiler. My question will go to ASP.NET. Is it the same?
Does it require 3 steps? ...
0
votes
2answers
283 views
Idea to develop a caching server between IIS and SQL Server
I work on a few high traffic websites that all share the same database and that are all heavily database driven. Our SQL server is max-ed out and, although we have already implemented many changes ...
0
votes
1answer
145 views
How to create a Request Specific Thread Safe Static int Counter?
In one of my server application I have a class that look like,
class A
{
static int _value = 0;
void DoSomething()
{
// a request start here
_value = 0;
_value++;
...
2
votes
1answer
241 views
Organizing ASP.Net Single Page Application with Nancy
As a personal project, I'm creating a single page, asp.net web application using Nancy to provide RESTful services to the single page. Due to the complexity of the single page, particularly the ...
1
vote
3answers
346 views
Setting up ASP.NET structure for code
I've always coded in C# MVC3 when developing web applications. But now i wanted to learn a bit more about developing web sites with just ASP.NET.
But now i'm wondering what a good setup for my code ...
0
votes
2answers
179 views
add a prefix to localhost [closed]
Is there any possibility to add a prefix before localhost?
My question is that I want to add a prefix before localhost for my project url (ie. "dev.localhost/project/default.htm"). This is for an ...
-1
votes
2answers
312 views
How to translate PHP and ASP code in both directions [closed]
Is there any IDE that can help convert PHP code into ASP, I mean in both directions.
Please share if you have any idea.
Someone also has an idea, or can give any directions about how to go about it ...
0
votes
0answers
140 views
Admin Panel like Custom Framework [closed]
I want to Create a Framework , like Admin panel , which can rule almost all the aspects of what is shown on the frontend.
For an (most basic) example: If suppose the links which are to be shown in a ...
2
votes
1answer
752 views
Should I implement BackBone.js into my ASP.NET WebForms applications?
Background
I'm trying to improve my group's current web app development pattern. Our current pattern is something we came up with while trying to rich web apps on top of ASP.NET WebForms (none of us ...
-3
votes
1answer
644 views
quick approach to migrate classic asp project to asp.net [duplicate]
Recently we got a requirement for converting a classic asp project to asp.net.
This one is really a very old project created around 2002/2003. It consists of around 50 asp pages. I found very little ...
4
votes
1answer
144 views
Licensing approach for .NET library that might be used desktop / web-service / cloud environment
I am looking for advice how to architect licensing for a .NET library. I am not asking for tool/service recommendations or something like that.
My library can be used in a regular desktop ...
0
votes
1answer
422 views
SOA in .NET 4.5 with MSMQ Durability
I have been doing some investigation regarding ASP.NET Web API. I have enjoyed using the WCF REST template to create new RESTful web services, and Web API seems to be a cleaner iteration on that.
...
0
votes
0answers
945 views
moving from wpf to html5 [closed]
I don't even know if this is the right StackExchange site to post this question. If it isn't, please excuse me and please let me know which would be the right one.
I am an experienced WPF developer, ...
2
votes
2answers
787 views
Sharing authentication methods across API and web app
I'm wanting to share an authentication implementation across a web application, and web API. The web application will be ASP.NET (mostly MVC 4), the API will be mostly ASP.NET WEB API, though I ...
1
vote
1answer
96 views
multi-clients web application,should I use custom user controls or a common user control
Say my company is going to build a complicated asp.net web form education system. One of the module is web based registration. To make it flexiable, we decide to use user control(ascx) with ...
5
votes
6answers
381 views
.NET - refactoring code
I have inherited and now further develop a large application consisting of an ASP.NET application, VB6 and VB.NET application.
The software was poorly written. I am trying to refactor the code as I ...
1
vote
1answer
485 views
How to structure a XML-based order form using ASP.NET
First question here; please help me if I'm doing something wrong.
I'm a graphic designer who's trying to teach himself ASP.NET/C#. My server-side background is PHP/WordPress and some ASP Classic, and ...
1
vote
1answer
236 views
ASP.NET MVVM Handling multiple Data Transfer Objects on a single page
I have an asp.net mvc "edit" page which allows the user to make edits to the parent entity, and then also "create" child entities on the same page. Note: I'm making these data transfer objects up.
...
2
votes
0answers
244 views
Open source ASP.NET MVC project for a SaaS application [closed]
I am working on a personal project that offers a service online. I'd like put this out to the public. I don't want to reinvent the wheel and use an existing template/open source project and add my ...
4
votes
2answers
254 views
Do ASP.Net Web Forms actually produce ADA compliant HTML? Does the ASP/AJAX toolkit undermine the goal of ADA compliance?
I'm trying to convince my employer to let us use the Microsoft ASP/AJAX toolkit since it simplifies the implementation of many controls. However they have rejected the idea on the grounds that it ...
5
votes
2answers
413 views
Is server validation necessary with client-side validators?
I recently created a .net web app that used over 200 custom validators on one page. I wrote code for both ClientValidationFunction and OnServerValidate which results in a ton of repetitive code.
My ...
3
votes
8answers
5k views
What is the best way to create HTML in C# code?
I have a belief that markup should remain in mark-up and not in the code behind.
I've come to a situation where I think it is acceptable to build the HTML in the code behind. I'd like to have some ...
6
votes
7answers
2k views
Best practices for logging user actions in production
I was planning on logging a lot of different stuff in my production environment, things like when a user:
Logs In, Logs Off
Change Profile
Edit Account settings
Change password
...
etc
Is this a ...
-1
votes
1answer
183 views
Getting some experience with asp.net [closed]
Hi I recently learned asp.net webforms and looking to get some experience under my belt using it.I found a website that provided some exercises here:
asp.net exercises
There weren't that many and I ...
3
votes
2answers
378 views
Is ASP.NET MVC completely (and exclusively) based on conventions?
--TL;DR
Is there a "Hello World!" ASP.NET MVC tutorial out there that doesn't rely on conventions and "stock" projects?
Is it even possible to take advantage of the technology without reusing the ...
4
votes
1answer
223 views
Scenarios for differences between UICulture and Culture
In .NET there are two "culture" values, UICulture and Culture. The first one is for localized texts on the UI, while the latter sets the culture for date and number formats.
I can't come up with any ...
3
votes
3answers
341 views
How to deal with almost the same enums?
I need to define enums in several classes. The majority of fields are the same in all of the enums. But one has one or two more fields, another has fewer fields. Now I wonder what is the best way to ...
-4
votes
1answer
2k views
Which platform to choose from .Net or Java [closed]
I know that there is a lot healthy discussion about this topic. but my case is entirely different from these discussions.
I have just passed out my graduation. During the graduation period, i had ...
1
vote
1answer
264 views
WCF/webservice architecture question
I have a requirement to create a webservice to expose certain items from a CMS as a web service, and I need some suggestions - the structure of the items is as such:
item
- field 1
- field 2
- field ...
1
vote
1answer
645 views
Alternative way of developing for ASP.NET to WebForms - Any problems with this?
So I have been developing in ASP.NET WebForms for some time now but often get annoyed with all the overhead (like ViewState and all the JavaScript it generates), and the way WebForms takes over a lot ...
1
vote
2answers
269 views
What is the impact of CSS Validation Failure?
I am developing a asp.net website. When I used the CSS property "word-wrap", VIsual Studio 2010 is showing a warning: Validation (CSS 2.1) 'word-wrap' is not a known CSS property name.
When I tested ...
-2
votes
3answers
3k views
How do I Export to excel on aspx page?
I am trying to take data that I request from an access database and put it into and excel file on the client computer.
I usually use ajax to request a summary of the data I need. It is formatted ...
9
votes
5answers
5k views
Is There a Real Advantage to Generic Repository?
Was reading through some articles on the advantages of creating Generic Repositories for a new app (example). The idea seems nice because it lets me use the same repository to do several things for ...
1
vote
2answers
180 views
Suggestions needed on an architecture for a multiple clients and customisable web application
Our product is a web based course managemant system. We have 10+ clients and in future we may get more clients. (Asp.net,SQL Server)
Currently if one of our customers need extra functionality or ...
3
votes
3answers
334 views
How much should I rely on Visual Studio's Auto Generated Code?
I'm reading about ASP.NET (VB.NET) and I want to built my professionally website. I'm wondering though; I'm still using the basics so I'm really just a novice, but how much should I rely on Visual ...
4
votes
3answers
1k views
Is the .NET/Microsoft technology stack a financially viable option for a startup with limited finances?
I have an unpaid internship for a very new startup company with little tech experience that's trying to be a Groupon clone. They're currently using Wordpress and I've been trying to decide what web ...
0
votes
1answer
393 views
Sequence Diagram for Response Redirect in ASP.Net Webforms
In asp.net webforms I have a home aspx page that has a “Go” button. [This is the only control in this page]. When this button is clicked, the user is redirected to “UserProfile.aspx” page. How can we ...
