Tagged Questions

89
votes
9answers
3k views

I never really understood: what is CGI?

CGI is a Comman Gateway Interface. As the name says, it is a "common" gateway interface for everything. It is so trivial and naive from the name. I feel that I understood this and I felt this every ...
45
votes
5answers
9k views

Elmah not working with asp.net site

I've tried to use elmah with my asp.net site but whenever I try to go to http://localhost:port/elmah.axd I get resource not found exception. My web.config is given below. <?xml ...
40
votes
30answers
3k views

What's your choice for your next ASP.NET project: Web Forms or MVC?

Let's say that you will start a new ASP.NET web site/application tomorrow. Would you chose Web Forms or MVC, and why?
40
votes
4answers
14k views

Repeater, ListView, DataList, DataGrid, GridView … Which to choose?

So many different controls to choose from! What are best practices for determining which control to use for displaying data in ASP.NET?
39
votes
10answers
10k views

ASP.NET MVC Relative Paths

In my applications, I often have to use relative paths. For example, when I reference JQuery, I usually do so like this: <script type="text/javascript" ...
37
votes
4answers
10k views

Difference between a Postback and a Callback

I keep on hearing this words 'callback' and 'postback' tossed around. What is the difference between two ? Is postback very specific to the ASP.NET pages ?
19
votes
13answers
1k views

Why should a web architecture be loosely coupled?

When I look at ASP.NET MVC projects I everytime see loose coupled architecture. For what do I need a loose coupling in a web architecture (if I do not make unit tests)? What are advantages and ...
19
votes
3answers
4k views

How to deploy after a build with TeamCity?

I'm setting up TeamCity as my build server. I have my project set up, it is updating correctly from subversion, and building ok. So what's next? Ideally, I'd like to have it auto deploy to a ...
18
votes
8answers
321 views

Release Management - releasing to a subset of users - how would it work for a public facing website

I read somewhere (sorry don't exactly remember the source) that facebook has release Tuesdays. They release the new features to their internal employees first, then to a small set of external users ...
16
votes
2answers
1k views

How can I avoid duplicate content in ASP.NET MVC due to case-insensitive URLs and defaults?

Edit: Now I need to solve this problem for real, I did a little more investigation and came up with a number of things to reduce duplicate content. I posted detailed code samples on my ...
14
votes
10answers
640 views

Are there alternatives to ASP.NET for C# web development?

Lately, I've been thinking that I'd like to try some new ideas and a new approach to web application design. I'm mostly used to using ASP.NET (.NET 2.0) but I've toyed with the ASP.NET MVC library a ...
13
votes
6answers
2k views

How can I make my Selenium tests less brittle?

We use Selenium to test the UI layer of our ASP.NET application. Many of the test cases test longer flows that span several pages. I've found that the tests are very brittle, broken not just by code ...
13
votes
12answers
1k views

Why should I both Unit test AND Web test (instead of just web test)?

My current position is this: if I thoroughly test my ASP.NET applications using web tests (in my case via the VS.NET'08 test tools and WatiN, maybe) with code coverage and a broad spectrum of data, I ...
13
votes
6answers
3k views

Creating a mini-site in ASP.NET that works on Blackberry, Windows Mobile, and iPhone

I'm working on an ASP.NET website which targets desktop browsers. We want to enable an optional mobile view (e.g. http://m.sample.com) which will offer a few simple pages which will be mostly text. ...
12
votes
4answers
4k views

ASP.NET website 'Publish' vs Web Deployment Project

if i decide to use the 'publish' option for my ASP.NET website, instead of a Web Deployment Project, can i do custom msbuild things? Or do i need to stick with WDP's if i want to do custom msbuild ...
11
votes
2answers
1k views

ASP.Net: Literal vs Label

Apologies for the incredible newbish question, but I just wanted to hear some authorities on when and where you should use a LITERAL control over a LABEL. As I understand it, the difference is this: ...
11
votes
3answers
572 views

What is the maximum size of a cookie file?

Are there any limitations on the size of the cookie? Also, is this browser dependent?
11
votes
5answers
4k views

Stopping cookies being set from a domain (aka “cookieless domain”) to increase site performance

I was reading in Google's documentation about improving site speed. One of their recommendations is serving static content (images, css, js, etc.) from a "cookieless domain": Static content, such ...
11
votes
3answers
7k views

Access a control inside a the LayoutTemplate of a ListView

How do I access a Control in the LayoutTemplate of a ListView control? I need to get to litControlTitle and set it's Text attribute. <asp:ListView ID="lv" runat="server"> ...
11
votes
5answers
15k views

Mobile Device Javascript/CSS Support. What's out there?

I'm about to begin an ASP.NET application that will be targeted towards iPhones, Blackberries, and Windows Mobile browsers. Aside from the iPhone, I haven't been able to find much information on what ...
10
votes
13answers
341 views

div.classname in css file

I have seen some developers write HTML: <div class="test"> some content </div> CSS: div.test { width:100px. } What is the purpose of doing div.className instead of just ...
10
votes
4answers
377 views

A Git Source Control strategy for a live Sitecore website

Firstly, I apologise for the sheer size of this question as I'm sure what I am proposing is a "big deal" in terms of implementing and probably could be three or four separate questions in itself. I ...
10
votes
6answers
702 views

Why are companies still using Windows Forms and WPF applications instead of web applications?

Why are companies still using Windows Forms and WPF applications instead of web applications? I don't want a discussion. I want only the reasons, because in the last few days I have had a lack of ...
10
votes
1answer
2k views

Best Practice to Implement Secure “Remember Me”

Sometimes, I came across certain web development framework which doesn't provide authentication feature as in Authenication ASP.NET I was wondering what is the security measure needs to be ...
10
votes
6answers
1k views

What really is connection pooling?

I have heard the term connection pooling and looked for some references by googling it... But can't get the idea when to use it.... When should i consider using connection pooling? What are the ...
10
votes
6answers
1k views

Caching architecture for search results in an ASP.NET application

What is a good design for caching the results of an expensive search in an ASP.NET system? Any ideas would be welcomed ... particularly those that don't require inventing a complex infrastructure of ...
10
votes
2answers
4k views

Content-Disposition:What are the differences between “inline” and “attachment”?

What are the differences between Response.AddHeader("content-disposition", "attachment;filename=somefile.ext") and Response.AddHeader("content-disposition", "inline;filename=somefile.ext") I ...
9
votes
3answers
440 views

Deleting Directory at runtime

I just want to delete the Directory which is in the project folder. That folder having all web sharing authority and permission. The problem is arising when i am deleting the folder. Folder is ...
9
votes
18answers
614 views

Source Code Control Systems in Web Development

We are just beginning the process of looking for a source code control system. I realize we are behind, but better late than never. None of the members on our team have experience with any systems in ...
9
votes
7answers
1k views

Is ASP.Net a technology suitable for high-load sites?

That's the question... Do you think ASP.Net is a technology suitable for high-load sites? Do you know any populer sites -apart from stackoverflow, of course- built with this technology? Thanks.
9
votes
25answers
5k views

Who actually uses DataGrid/GridView/FormVIew/etc in production apps?

Curious if others feel the same as me. To me, controls such as datagrid/gridview/formview/etc. are great for presentations or demo's only. To take the time and tweak this controls, override their ...
8
votes
2answers
238 views

Validating your site

What else needs to be validated apart from what I have below? This is my question. It is important that any input to a site is properly validated: Textboxes, etc – use .NET validators (or custom ...
8
votes
5answers
254 views

How to run java script code before page load?

I have working in asp.net web application. Here I need to run javascript before page load. I have gone through <body oninit="funinit();" onprerender="funRender();" onload="funload();"> ...
8
votes
2answers
366 views

Help me come up with a deployment strategy

So I have an ASP.NET MVC website I am developing and never had a decent deployment strategy so making changes, especialy database scheme ones can involve a lot of steps and time. Here are the steps I ...
8
votes
15answers
536 views

How to interpret 'test every scenario you can think of'

I was recently tasked to, "Test every scenario you can think of and try to break the component" What might be sensible in 'everything' when the application is a website? NOTE: This particular site ...
8
votes
13answers
3k views

Which language should I learn between PHP and ASP.NET?

This question has been around my head for the past months but I have been reticent to post it on here due to the subjective nature of the question, but here goes. I'm a software engineering student ...
8
votes
6answers
1k views

Authenticating ASP.NET web app with WCF service

Background I have an ASP.NET web application that interacts with WCF services. The web application and the WCF services are under my control. The ASP.NET web application uses a custom implementation ...
8
votes
5answers
206 views

Using Ajax, is it better to generate aditional markup in the server or the client side?

Which is better in AJAX request, Response with ready HTML or response with just data and write HTML using JavaScript, and this JavaScript will use a predefined HTML template to put the coming data ...
8
votes
8answers
2k views

ASP.NET Web Deployment Projects: getting rid of .compiled files

I'm using a Web Deployment Project in Visual Studio 2008 in order to prepare my ASP.NET application (ASP.NET web application, not ASP.NET web site) for being copied to several servers. I have to copy ...
8
votes
18answers
11k views

What is the best open source .NET content management system (CMS)?

I'm trying to find a decent (ie cheap / free) .NET content management system. DotNetNuke is not an option as far as I am concerned. Wish list: Works out of the box Easy to install Simple clean ...
8
votes
6answers
1k views

Separating client side logic from server side logic in a reusable way using MVC

Before you answer, this question is complicated: We are developing in asp.net / asp.net mvc / jQuery but I'm open to solutions on any platform using any framework I think logic like sorting / hiding ...
8
votes
9answers
4k views

How to begin as a .net and SharePoint developer [closed]

I'd like some feedback regarding how to begin learning ASP.net (C#) and SharePoint development. What have you found useful to jump start your career? Any particular books, videos, boot camps, ...
8
votes
2answers
2k views

How can I programmatically run the ASP.Net Development Server using C#?

I have ASP.NET web pages for which I want to build automated tests (using WatiN & MBUnit). How do I start the ASP.Net Development Server from my code? I do not want to use IIS.
7
votes
3answers
399 views

should I use WebMatrix to build a real-world website?

I have gone through hundreds of articles and blog posts that saying WebMatrix is just for beginners and such. my question is, why shouldn't I use WebMatrix to create a real-world working website, like ...
7
votes
3answers
97 views

ASP.NET MVC or WebForms?

I'm very new to web development, have many years background on the desktop, but nothing on web, only html. I want to make a simple dynamic webpage for a product I've been working on by myself, but I ...
7
votes
3answers
93 views

How can you tell if an an ASP.NET request is remote or from localhost?

How can you programmatically determine if an an ASP.NET request is remote or from the localhost?
7
votes
8answers
3k views

How to digitally sign PDF documents in a web application?

I'm building a web application that most allow the user to digitally sign PDF documents with certificates installed in the client machine. The document, once signed, should be posted back to the ...
7
votes
3answers
94 views

Hiding Controls as a Form of Web Security, Suggestions for Better?

I am working on a website (developed in ASP.NET with C#) that was passed on to me. As I'm working through the site, I notice much of the site has this type of code in it: EmailLabel.Visible = false; ...
7
votes
6answers
380 views

I'm an ASP.NET programmer (Webforms). Should I switch to MVC? [closed]

I like having control over exactly what's going on under the hood (the MVC way), but I'm also lazy, and don't like writing tons of javascript GUI things. Should I or should I not switch to MVC? ...
7
votes
4answers
594 views

To SharePoint Or Not (as a foundation for application development)(vs ASP.NET)

I have a POV that you should only use SharePoint for application development under these conditions. 1) The application uses documents and these documents need some sort of functionality that ...

1 2 3 4 5 34