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. ...
-2
votes
3answers
209 views
I have to run certain number of statements (which are executing .exe) in a loop
I have to run certain number of statements (which are executing .exe) in a loop.
ForEach(object obj in ListOfVersions)
{
Step 1: call Exe1 Args=obj.somevalues
Log Step 1 completed ...
1
vote
2answers
110 views
Is it appropriate to use inheritance to prevent code duplication of the logic for a user control?
Suppose I have two or more UserControl implementations with vastly different implementations but near identical code-behind. One strategy to avoid code duplication is as follows:
Change each ...
1
vote
2answers
438 views
Data transfer between “main” site and secured virtual subsite
I am currently working on a C# ASP.Net 3.5 website I wrote some years ago which consists of a "main" public site, and a sub-site which is our customer management application, using forms-based ...
2
votes
1answer
383 views
A small project but I want to use design patterns to do it right
I've got a project coming up, a very a small system, but one that needs to be extended in the future.
Here's how I've designed it so far.
It's 3-tier: presentation, business and data.
For the ...
0
votes
1answer
95 views
MVC Widget optimization when accessing CSS and Resources
So we're trying to re-imagine our web solution in an MVC fashion. Going from an old webforms based solution to working with ASP.NET MVC with a bootstrap main menu and adding functionality in the forms ...
0
votes
1answer
365 views
Database Context and Singleton injection with IoC
All of the below relates to a ASP.NET c# app.
I have a Singleton Settings MemoryCache that reads values from database on first access and caches these, then invalidates them using SQL Service Broker ...
2
votes
0answers
78 views
Best practice for copying static content between a web project and a self hosted EXE project
I have a visual studio solution that has, amongst other project the following three:
NamespacePrefix.NancyFX.csproj: Some Nancy modules
NamespacePrefix.NancyFX.IISHosting.csproj: A web solution to ...
1
vote
0answers
114 views
How much segregation is too much in this design?
We are working on ASP.NET webforms application developed using WCSF (MVP pattern). In the application, there is a search screen that allows the user to enter some fields and display the results.
We ...
0
votes
0answers
48 views
OPTION STRICT set to off
I am working on an application with over one million lines of code. OPTION STRICT is set to off!.
I want to set it to ON during the next work iteration. I believe the only reason OPTION STRICT ...
0
votes
0answers
55 views
Single configuration file for multiple WCF services
We have a scenario where we have multiple WCF services hosted on the same server connecting to same database. But currently they all have their separate web.config files. So each time there is some ...
0
votes
0answers
85 views
Using web api or libraries
We currently have 1 domain and 4 subdomains using 5 different applications. We are programming in asp.net and we have 6 different solution project. 5 applications and 1 solution for shared back-end. ...
0
votes
0answers
211 views
What are the shortcomings of using AuthorizeAttribute in this way in MVC?
I have ASP.Net MVC project code with custom authorization as below:
public class UpdateAccrualAuthorize : AuthorizeAttribute
{
public override void OnAuthorization(AuthorizationContext ...
0
votes
0answers
49 views
What is 'Asp.net Handler'?
I read in a book 'beginning asp.net 4.5 in c#' that when some one type the URL of the asp.net website, the browser send the request to the server and if the server find any ASP.NET markup or controls ...
0
votes
0answers
50 views
How to mitigate security risks when deploying a database to the web via automated migrations?
I'm looking at using built in database migrations frameworks (such as the migration framework included in EF Code First or migratordotnet) but I have concerns about the implications of allowing a ...
0
votes
0answers
178 views
ASP.NET How much session dependence is too much?
Bit of Background:
I'm currently working on a ReportViewer project for my company. I'm using MVC3 and ReportViewer Control (Microsoft 2010 version). I have the user select their report from a list of ...