asp.net

Event log messages get overrriden by another event log

I create event logs for asp.net projects error logging. I do it by adding a key in regedit, and then a sub-key. Sometimes, I create a new key and sub-key, and instead of getting a new, empty event log, I see in the event viewer that it's showing me the logs from a different project. I'm not able to find a pattern as to when this happens....

Get current request's credentials for using in WebRequest

When accessing my site, the user has to enter his credentials. They are basically plain directory access credentials. At a certain point I check if a certain file they want to download exists by calling WebRequest req = HttpWebRequest.Create(checkUri.AbsoluteUri); WebResponse res = req.GetResponse(); Although I can access the checkUri...

Virtual Directory in ASP.NET project

In our web application we have a directory which resides outside of the project. On IIS that's no problem to do, but can I do that also in my project in Visual Studio? Edit: My project is running on File System, and not on Local IIS ...

Locking out a user in an ASP .Net Custom Membership Provider

I've had to create a custom membership provider for my current ASP .Net project in order to fit in with our database schema, and am having problems configuring it to lockout a user if they get their password wrong three times, as is supported by the standard providers. Is this something I need to implement myself, or should it be suppor...

How do I get dynamically added ASP.NET buttons to fire events?

This is probably a simple question but I am not an ASP.NET developer and I am quite stuck. I have a simple search routine that returns between zero and several hundred results. Each of these must be added to the page as a button and I want to set the text of the button and the CommandArgument property so that when the button is clicked ...

ASP.NET Imagemap blocked by Kaspersky anti-virus software

Has anyone experienced problems with Kaspersky anti-virus stopping browsers from displaying imagemaps created in an ASP.NET app? And if so, is there a way round this? Many thanks, Nick ...

How to figure out which timezone a (ASP.NET / MonoRail) website user is in?

So, I'm setting a cookie that should expire. However, I want this to work around the world. So I need to adjust my expiry date for the user's timezone. So, I need to find out the user's timezone, server-side. Is there a way to do this in the BCL? As in, something like relying on the CultureInfo.CurrentUICulture to be set correctly...

Abstracting UI data formatting

Hi, I've got some entities which have decimal properties on them. These entities' properties are displayed in multiple places throughout my UI. Currently I'm finding myself doing: litWeight.Text = person.Weight.ToString("0.00"); all over the place. Now I know for a fact that in several instances, and am suspicious of many others tha...

C# mutex - error calling from ASP.NET and console application

I am using a global named mutex for file access synchronization between an ASP.NET application and a console application. While running the ASP.NET application, the console application fails to acquire mutex - as expected. While running the console application, the ASP.NET application throws UnauthorizedAccessException: Access to the pa...

ASP.Net MVC HandleError throwing 500 Internal Server Error

Hi folks I have the following HandleError filter on my controller: [HandleError(ExceptionType = typeof(ArgumentException), View = "DestinationError")] I've set-up the Web.Config so that customErrors are on. The problem I'm having is that the HandleError filter is working fine, when I run the app locally out of Visual Studio, but when...

Resolving compiler error CS1519: Invalid token ',' in class, struct, or interface member declaration

I'm working on an ASP .NET 2.0 site which uses a Web Application project file, and therefore compiles to a dll rather than deploying the source code as you do with the older style Web Site projects. The site works fine on my test server (Windows Server 2003 R2, IIS6) when it runs in the root of a website. However I need to run it under ...

Determine who/what reserved 5.5 GB of virtual memory in w3wp.exe

On my machine (XP, 64) the ASP.net worker process (w3wp.exe) always launches with 5.5GB of Virtual Memory reserved. This happens regardless of the web application it's hosting (it can be anything, even an empty web page in aspx). This big old chunk of virtual memory is reserved at the moment the process starts, so this isn't a gradual ...

App hosting scenario - what is the best solution?

I'm building a web app/service, and I'm trying to determine the best hosting scenario for the system. Windows, ASP.NET. SQL Server Medium sized SQL Server database (in the gigabytes, but not HUGE) Medium load web traffic...a good number of heavy users, but the number of total users isn't massive A process queue for work that must be do...

What is the best approach to deploy an ASP.NET web app on multiple servers in a clustered environment.

I have 6 servers that i need to deploy my ASP.NET web application to. While deploying enhancements, I usually remove 3 from the cluster, deploy the app, put them back in rotation, and remove the other 3 and do the same. What is the best practise that you would follow to minimize/eliminate any customer impact when you are deploying app...

create asp.net a-z list

I could do this myself given time but does anyone have a nice asp.net implementation of an a-z list coming from a sql query. I would like it to come in the form: A aardvark anagram apple B barry brown.... That is with each entry being a link. ...

How do I turn off custom error handling in IIS for my web site?

How do you even look at the web.config file? I don't know where to go to turn custom errors off...help! I tried command prompt and java script....can any one help me? ...

ASP.NET 3.5 Gridview control

If you click on the 'search' button in the following link link text A gridview shows up. I am trying to do something similar within a table whose width is set to auto. My current way is to create the gridview in design view, but however, my gridview does not resize to the table width. I understand that I posed 2 different questions in ...

Can I automatically increment the file build version when using Visual Studio?

I was just wondering how I could automatically increment build (and version?) of my files when using Visual Studio (2005). If I look up the properties of say C:\Windows\notepad.exe, the Version tab gives "File version: 5.1.2600.2180". I would like to get these cool numbers in the version of my dll's too, not version 1.0.0.0, which let'...

Web authentication state - Session vs Cookie vs ?

What's the best way to authenticate and track user authentication state from page to page? Some say session state, some say cookies? Could I just use a session variable that has the ID of the user and upon authentication, instatiate a custom User class that has the User's information. Then, on every page, verify the session variable is...

MVC using ASP.NET webforms

I've inherited an ASP.NET application built on top of webforms, and the application suffers from having all of its business logic embedded in the codebehind. As a result, this application can't be unit tested. I want to break out the functionality of every form into an MVC style, but I've found that ASP.NET resists every effort on my pa...