Search Results

2
votes

How do I change a web site from an IIS hosted site to an ASP.Net Development Server hosted site?

Can you start a new project and use the "Use Custom Web Server" option? Personally I would start a new project and get the files directly from Source Control - being a web site rather than …
0
votes

Convert existing asp.net application (large) to web standards

There are two routes you can take. 1) Rip it up and start again 2) Modify what you have and incrementally change it 'one page at a time' I know that's a simple and obvious answer bu …
4
votes

Adding ‘onClientClick’ javascript to an ASP.NET Login control

top.location.href is setting the url of the browser to be a new url so you are never completing the action of the click. What you could do is set the target of the form to be "_top" …
2
votes

Can an ASP.NET HttpRequest ever be null? How about CurrentExecutionFilePath?

Oddly enough I have seen a null HttpRequest error (many many) times on a production server without ever being able to find out the cause. I know that is of no use to you whatsoever but am j …
0
votes

Custom NumberFormatInfo on DataFormatString

I'm not 100% certain but I don't think you can. You'll need to use a template field and bind to a literal on RowDataBound instead using your custom formatter. Happy to be proved wrong howev …
1
vote

Problem with Master pages event order

Populating the controls during the Masterpage's Init will solve your issue from the sounds of it. http://msdn. …
-1
votes

Combining ASP.net SQL 2005 Change Scripts

I think SQL packager from Red gate does this (and a lot more) http://www.red-gate.com/products/SQL%5FPacka …
1
vote

ASP.NET Compilation And Code Visibility

Yes, it is a compilation issue, read a bit more about this same question at …
0
votes

Resize PNG in a ASP.Net App

The absolute best way to not lose quality (if you are generating the original images) is to generate the image from scratch again but with the smaller dimensions. Otherwise built in image …