Questions tagged [asp.net]

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. ASP.NET is built on the Common Language Runtime (CLR), allowing programmers to write ASP.NET code using any supported .NET language.

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. ASP.NET is built on the Common Language Runtime (CLR), allowing programmers to write ASP.NET code using any supported .NET language.

More information at: www.asp.net

631 questions
8
votes
3 answers

How do big companies maintain their products' source code without it falling into wrong hands?

I am developing a web application by using ASP.NET. I would like to hire some developers to speed up my process but I am afraid what If my members take my code and go away? I am just wondering how big companies maintain their product code without…
8
votes
1 answer

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 example, at this moment there are two providers: …
fkm71
  • 95
5
votes
6 answers

If you develop with ASP.NET, which other technologies do you use?

I wasn't sure if this was more suited to here or StackOverflow. I've always resisted doing web development because the technology stack just seemed a mess. It seems the web has become quite popular so I'm actually going to embrace web development,…
Ian
  • 5,452
5
votes
3 answers

Going from webforms, VS 2008, 3.5 framework to the "next level" based on my goals

I've got a few choices to make as I develop some business websites that will run for the next two to three years. Currently I run ASP.NET 3.5 with Visual Studio 2008. I do my development rather crudely in WebForms because that's what I learned and…
Caveatrob
  • 300
4
votes
4 answers

When to take that leap and program

I've been studying a beginners guide to ASP.NET 4 for the past month and a half, and I'm at the end of the books. The next book will be one up (Professional guide). As yet I've only programmed exercise that are in the books, not my own code. When…
user21174
4
votes
4 answers

How many ASP.NET developers program using pure OO?

How many ASP.NET developers program using OO (e.g. using get, set)? 6 years ago I developed and maintained a .Net 1.1 Intranet application that had no get/set. So how about today? Worth trying the pure OO route? Thanks, TDG
3
votes
0 answers

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 host the nancy…
3
votes
1 answer

ASP.NET Dynamic Data

I'd like to know what people think of ASP.NET Dynamic Data. I see the project type in visual studio and have found very little about it mention on blogs and in books. I created a site using it and it is great the way it wires up the CRUD pages,…
3
votes
1 answer

UserControl inside Placeholder good/bad? + Postback problem

Currently I'm working a bit with ASP.NET and trying to find the best way to navigate through pages. Right now I have an UpdatePanel which has a Placeholder inside it. This Placeholder will then add the usercontrol I need. I've been looking around…
mRf
  • 185
2
votes
2 answers

Where is the problem with the output of web forms?

Most of you already know that the output of ASP.NET web forms is quite ugly when you compare it to the output of ASP.NET MVC. My question is what could the problems of that ASP.NET web forms' output cause to the end users? Is it the slow of…
2
votes
1 answer

Do modern design paradigms support Soap parameters and url parameters at the same time?

I'm currently updating a few very old web Services and came upon a Situation where I'm unsure. I've got a web Service with the following method Header: public string MyService(string data1, string data2, int subdatalength, short…
Thomas
  • 143
2
votes
2 answers

How to instrument existing ASP.NET application?

We have several highly complex ASP.NET web applications that are used internally by hundreds of users. We are trying to figure out which areas of the applications to invest in to improve functionality, but we aren't sure which screens/features are…
RationalGeek
  • 10,077
1
vote
3 answers

How to increase the speed of the page loading in ASP.NET?

I am .net programmer using Asp.net ,C# and Sql server 2005 to display set of information. My project is to create tools for Call Center Systems in my office. Now i am have created the project. but its too slow and takes much time in the time of…
1
vote
1 answer

ASP.NET deployment code?

I have a question regarding uploading an asp.net website to a real web sever. What type of files will be uploaded is it ASP.NET files or is it assemblies? To be more clear if someone got an access to my ftp and downloaded all the files will he be…
Lamaasi
  • 37
0
votes
1 answer

Session state provider and atomic operations

I've been thinking about this and it is blowing my mind... How does a session state provider properly works internally? I mean, I tried to write a custom session state provider based on Azure Tables or Blobs, but quickly I realized that because…
NullOrEmpty
  • 697
  • 2
  • 6
  • 16
1
2