1
vote
Tools to convert asp.net dynamic site into static site
http://www.httrack.com/
Have used for this purpose a few times, may need to do a little tidying up of urls, and some css linked images mig …
2
votes
Examples for coding against the PayPal API in .NET 2.0+?
Found this article by Rick Strahl recently http://www.west-wind.com/presentations/PayPalInteg …
1
vote
__doPostBack is not working in firefox
I have had problems with firebug on some web forms, something to do with the network analyser can screw with postbacks.
…
0
votes
Whats a good way to trim the GUI of a ASP.NET website?
A quick and dirty option is using the asp:loginview controls, which can be wired up to user roles.
Not as elegant as the custom page class option suggested by Jonathan, and can be a bit of …
3
votes
How do you Draw Transparent Image using System.Drawing?
It is possible, but not easy
If you are able to use unsafe code in your project, there are a few methods to use pointers to rip through the colour table and make the transpa …
0
votes
ASP.NET, XSLT and dynamic controls
I don't know of any easy way to do it, but there are a few systems out there which generate the aspnet markup on the fly then send it to the aspnet runtime from a memory stream (or similar …
1
vote
In ASP.NET is there a different way that a file must be transmitted in Firefox?
Use Response.WriteFile or Response.BinaryWrite, there are some known strange behaviours with the TransmitFile method.
…
0
votes
ASP.NET authentication mode=Forms - so why am I getting a Windows Login prompt?
Sounds like windows permissions problem.
Windows permissions will always override anything that you have set up in aspnet.
I would start by looking at "anonymous access" permis …
1
vote
Introduction to ASP.Net from PHP
There are usually at least 17 different ways of tackling most problems in asp.net, which does make it somewhat confusing to start with.
If you want to be close to the metal, in a php kind …
1
vote
Is there any CMS better than WordPress or should I roll my own?
I have had a bit of pain using blog engines like expression engine to make more static type sites, you end up working around a whole lot of features that you don't really need, and hacking things t …
0
votes
How to drop/discard a Request in ASP.NET?
You may want to have a look at this http://www.angrypets.com/tools/rdos/, which does a similar thing to what you are talking about, …
4
votes
asp.net gridview sort without data rebind
If you are not paging the results, and just doing a read, then something like the jquery tablesorter plugin would be a quick and easy fix. I have used this on tables of up to 1400 rows and works gr …
0
votes
asp.net remove unused httpmodules
Starting point here: http://www.codeproject.com/KB/aspnet/10ASPNetPerformance.aspx, by Omar from PageFlake …
1
vote
How can I use Digest Authorisation with my ASP.NET site?
Depending on your access to the machine, a really simple option is a program called IISPassword, some providers have this installed, which allows you to use apache style .htaccess .htpassword files …
0
votes
Codebehind and inline on same page in ASP.NET?
Yes, that will work, make sure the code behind class is declared as a partial class, which is the default these days anyway. Don't think it would work in 1 or 1.1
…
