asp.net

Why is the VS 2010 debugger popping up when I'm trying to debug a VS 2008 app?

I'm trying to debug an ASP.NET 3.5 app, which I've recently migrated from VS 2005. (This uses Crystal Reports 11 Release 2, but I don't know if that comes into what's causing me problems, or not.) This app uses Active Directory for authentication. I'll have the app opened in VS 2008, and then press the F5 key to start debugging. Shor...

ASP.NET UrlRewriter - How to Write RegEx for Root?

Hi All, I have been trying to use UrlRewriter (Intelligencia.UrlRewriter.dll) in a test project. My rewrite statement is as in the following: <rewrite url="~/Sample/(.+)" to="~/Sample.aspx?Test=$1"/> This statement works great for a URL like: http://localhost:4188/RewriteTest/Sample/12345 or, let's say: http://RewriteTest.com/Sa...

Membership provider properties not being read from web.config

I'm having a problem with a custom Membership implementation for ASP.NET using EF. The thing is, my web.config features the default values for the provider but at runtime those default are only being read in Initialize() the first time provider is instantiated (that happens for instance when I request the Register view via GET but when I...

Application_Error no longer triggers when published to IIS

OK I have the following code in my Global.asax file: void Application_Error(object sender, EventArgs e) { // Code that runs when an unhandled error occurs Exception objError = Server.GetLastError().GetBaseException(); Response.Redirect( String.Format( "/Error/{0}/{1}", ((HttpExcep...

What is Container.DataItem exactly?

What is Container.DataItem exactly? ...

WCF Service Not Connecting to SQL Database

Problem When making calls to a SQL database from a WCF service we receive the following error: "A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to...

Why is Asp.Net WebForms GridView performing an unasked DataBind() in OnPreRender()?

I'm working with a GridView in an UpdatePanel and perform databinding to an ObjectDataSource using the DataSourceID property. Everything works just fine except for when I perform data validation in the object source and return false from the Update. I use this to set the content and visibility of another control in the GridView. However,...

configuration settings in asp.net

We have a static html/webform site, the site lacks search functionality, I was able to get yahoo BOSS (Build your Own Search Service) after a few hours yesterday, i got it working (still working on adding missing features like pagination) , I was wondering about the configuration options of the class, as I have a BossSearch.cs in App_Cod...

Changing Gridview row background color when editing ?

Hi all, I'm having some trouble with editing a gridview row's background color when Editing it. The thing is, I am using the RowDataBound event method to change e.Row.BackColor based on a criteria when displaying the report( 3 different colors depending on result ). For the rows that don't fall under that criteria, a GridView's property...

MySQL with ASP.net and Membership

Hello guys i have made it after 2 hours to bind MySQL to .NET and to create a Membershipprovider Database from ASP.Net. Know i have the tables like aspnet_users. I just added a new table with the name friendsTable. This one have a row calles friendsUserId. If i now try to make a relation between frendsUserId and id from aspnet_users wil...

Considerations for ASP.NET application with long running synchronous requests

Under windows server 2008 64bit, IIS 7.0 and .NET 4.0 if an ASP.NET application (using ASP.NET thread pool, synchronous request processing) is long running (> 30 minutes). Web application has no page and main purpose is reading huge files ( > 1 GB) in chunks (~5 MB) and transfer them to the clients. Code: while (reading) { Response....

ASP.Net - Can I Access My BasePage Properties From Within Markup?

I want to be able to extend the System.Web.UI.Page class and then easily access those properties from the Markup. I know I can do it from the codebehind, but is it possible from the Markup? Take the following class. public class MyBasePage : System.Web.UI.Page { public bool DoesThisWork { get; set; } } Then I want to be able to ac...

what is the best way to maintain a 3 level heirarchy?

How can I maintain a 3 level heirarchy by using a gridview? ...

How to add attribute to Title tag

I'm using webforms ASP.NET, with masterpages. I want to add a LANG attribute to the <title> tag. ASP.NET automatically generates a title tag. I've tried adding my own tag with an ID and runat="server", like this: <title id="titleBlock" runat="server"></title> When doing this, I can set an attribute like the following without any e...

Branching and merging in TFS 2010

What is the best branching and merging strategy for a small development team making a lot of concurrent development on the same project? We need to be able to easily apply a hotfix to a production release while other developers are working. I was looking at the TFS Branching Guidance guide from codeplex and can't seem to figure out wh...

System for language versioning of .NET sites or Apps

Many years ago I build a simple system for handling languageversioning of texts in ASP.classic sites. Since then I have not converted or maintained it, and have been using various sub-optimal solutions (and lets face it, the system was probably not as great as I remember it ;-) What do you use for language versioning texts for your site...

ASP.NET controls opening new windows intead of postback in same window

The fils containing these control work fine in another project and they work fine on visual studio so I guess it is safe to assume that the problem is not in the files or with the server but has something to do with the project? What could be causing this? ...

Simplest Possible ASP .NET AJAX Proxy Page

After spending many hours poking around trying to get an ASP .NET AJAX proxy page, I'm pretty sure someone out there knows of an easier & simpler way. These are two ways I have tried: Web services endpoint. Problem: Super complicated, lots of work An OnLoad handler that sucks in a URL parameter and spits out the desired webpage (o...

Is there a way to redirect output to external console from NLOG in asp.net app?

I just started using NLog in my asp.net application, and I need to see log messages in real time. When I run it in VS2010 I can look at VS output window, but when I run it on the test box I obviously don't have that option. What I need is when my asp.net app starts a console window should open and show log entries in real time. Any ide...

Is there any way to send the Email notification using asp.net without using credentials?

I have this code to send email notification in my page. MailAddress to = new MailAddress("[email protected]"); MailAddress from = new MailAddress("[email protected]"); MailMessage message = new MailMessage(from, to); message.Subject = "Error Occred in the application:"; message.Body = ex.Message; SmtpClient client = new SmtpClient("smtp...