12
votes
7answers
589 views
What is the simplest way to charge money over the Internet?
I have a .Net 2.0/3.5 WebApplication.
I want to be able to take money over the internet for my service.
Each of my customers will have an AccountNo.
I wish to offer several products each of which …
7
votes
10answers
1k views
SQL Server 2005 Reporting Services - Pros and Cons
I am developing a web application using ASP .NET 2.0, VS 2008 and SQL Server 2005. I would like to Use SSRS 2005 for the various reports I need to build for this web application. I would like to …
7
votes
7answers
340 views
Static methods in a class - okay in this situation?
Hey all - I have an app where I'm authenticating the user. They pass username and password. I pass the username and password to a class that has a static method. For example it'm calling a method with …
7
votes
4answers
618 views
Capturing HTML generated from ASP.NET
How do I best capture the HTML (in my instance, for logging) rendered by an aspx-page?
I dont want to have to write back to the page using Response.Write, since it messes up my site layout.
Using …
5
votes
4answers
1k views
Is there any native way in ASP.NET to do a “success message”?
Say you have something like an ASP.NET ASP:DetailsView to show and edit a single record in a database.
It's simple to record the error cases... you add validation and a validation summary. When your …
5
votes
3answers
332 views
ReSharper giving C# 3.0 Code Inspection Warnings to .NET 2.0 Projects
When I am working in .NET 2.0 projects with the newest version of ReSharper (4.1) I am getting warnings about using the var keyword and lambadas etc.. Any idea how I can disable this only for .NET 2.0 …
4
votes
2answers
497 views
Users being forced to re-login randomly, before session and auth ticket timeout values are reached
I'm having reports and complaints from my user that they will be using a screen and get kicked back to the login screen immediately on their next request. It doesn't happen all the time but randomly. …
4
votes
4answers
431 views
What is the best menu for an ASP.Net application?
What do you find to provide the best menu for an ASP.Net 2.0 - 3.5 web application? Suggestions do not have to particularly be ASP.Net controls, but could be other menu's that work well within an …
4
votes
3answers
402 views
Get the source of some website from asp.net code.
Is there any way that I could get the source of a website (as a string preferably), let's say www.google.com, from some c# code inside code behind of asp.net website?
edit: of course i mean html code …
4
votes
4answers
590 views
How to generate an 401 error programatically in an ASP.NET page
As you can see this is a question from a none web developer. I would like to have an aspx page which, under certain circumstances, can generate a 401 error from code.Ideally it would show the IIS …
4
votes
2answers
638 views
Integrating jQuery into an existing ASP.NET Web Application?
Microsoft recently announced that the Javascript/HTML DOM library jQuery will be integrated into the ASP.NET MVC framework and into ASP.NET / Visual Studio.
What is the best practice or strategy …
3
votes
7answers
239 views
ASP.Net: IE6 making invalid requests
I have a live site where every error is logged and e-mailed to me.
I've been getting a lot of "Padding is invalid and cannot be removed." errors on requests to WebResource.axd. Looking closely, the …
3
votes
7answers
468 views
Compelling Reasons to Migrate from ASP.NET 2.0 to ASP.NET 3.5
Forgive me if this is a repeat question. I've searched StackOverflow and did not find the answer to my question, so here goes.
We currently have a web application running ASP.NET 2.0 with AJAX …
3
votes
3answers
414 views
Testing a Container.DataItem with inline code
I would like to do something like this in ASP.Net 2.0:
<asp:Repeater id="myRepeater" runat="server">
<ItemTemplate>
<% if (DataBinder.Eval(Container.DataItem, …
3
votes
7answers
481 views
How to avoid a database race condition when manually incrementing PK of new row.
Hi!
I have a legacy data table in SQL Server 2005 that has a PK with no identity/autoincrement and no power to implement one.
As a result, I am forced to create new records in ASP.NET manually via …
