vote up 8 vote down star
6

When I am working with ASP.NET, I find that there are always unexpected things I run into that take forever to debug. I figure that having a consolidated list of these would be great for those "weird error" circumstances, plus to expand our knowledge of oddness in the platform.

So: answer with one of your "Gotcha"s!

I'll start: Under ASP.NET (VB), performing a Response.Redirect inside a try/catch block does not stop execution of the current Response, which can lead to two concurrent Responses executing against the same Session.

flag
1  
You should move your example to an answer – John Sheehan Sep 15 '08 at 19:58

16 Answers

vote up 5 vote down

Life cycle of custom controls does not match up perfectly with page life cycle events of same name.

link|flag
vote up 12 vote down

Don't dynamically add controls after the page init event as it will screw up the viewstate tree.

link|flag
vote up 2 vote down

Don't edit your web.config with notepad if you have accented characters, it will replace it with one with the wrong encoding. It will look the same though. Just your application will not run.

link|flag
vote up 6 vote down

Viewstate ... if you are using it ... can get out of control if you are not paying attention to it.

link|flag
Viewstate is fine for changes made to controls by the user. It's when changes made by your code start making their way in there that you have a problem. – Joel Coehoorn Sep 16 '08 at 21:15
I agree ... it's just something you want to keep an eye on ... as it is prone to sloppiness. – mattruma Oct 7 '08 at 16:29
vote up 0 vote down

You can't reference anything at all above the application's root folder.

link|flag
vote up 0 vote down

All the code I have to maintain that still looks like it was written in vb6, showing complete ignorance of the newer styles.

I'm talking things like CreateObject(), excessive <% %> blocks, And/Or instead of AndAlso/OrElse, Len() instead of .Length(), s/o Hungarian prefix warts, Dim MyVariable with no type, functions with no return type... I could go on.

link|flag
vote up 1 vote down

Custom controls are only supported by the designer when building the control or when building the page that uses the control, but not both.

link|flag
vote up 4 vote down

Having to jump through hoops to get the .ClientID property into javascript.

It'd be nice if the render phase of the lifecycle created a script that set up a var for each server control with the same name as the control that was automatically initialized to the clientID value. Or maybe have some way to easily trigger this action.

Hmm... I bet I could set up a method for this on my own via reflection.

link|flag
I HATE this. Thank god the MVC framework makes this unnecessary. – Adam Lassek Oct 7 '08 at 16:22
At least in VB.NET, you have the option to use classic ASP delimiters to get the job done. It's not pretty, but it works: function jsFunction() { var someElement = document.getElementById(<%= SomeControl.ClientId %>); ... } – Jeremy Frey Oct 7 '08 at 16:45
I wouldn't put it straight into a .getElementById() call. I prefer to have a global script near the top where each control I use get's it's own var, defined once, with the clientID set as the value. They'd save a lot of hassle if they just made that standard. – Joel Coehoorn Oct 8 '08 at 2:04
this has been fixed in ASP.Net 4.0 – Alexandre Brisebois Sep 10 at 12:49
It was addressed. I'd say it's still far from "fixed". – Joel Coehoorn Sep 10 at 13:29
vote up -4 vote down

(VB.NET) If you send an Object via a Property's Get accessor into a function with a ByRef keyword, it will actually attempt to update the object using the Set accessor for the Property.

Ex:

UpdateName(ByRef aName as String)

UpdateName(Employee.Name) will attempt to update the name by using the Set on the Name property of Employee.

link|flag
That's a good thing- the way it should be. – Joel Coehoorn Sep 15 '08 at 20:07
vote up 3 vote down

The whole life-cycle thing in general.

Not that I see anything wrong with it, it's just that you'd be amazed at the number of people who start working on large ASP.Net projects before understanding it, rather than vice versa. Hence, it becomes a gotcha.

Note that I said large projects: I think the best way to come to terms with the life cycle is to work on a few smaller projects yourself first, where it doesn't matter so much if you screw them up.

link|flag
vote up -1 vote down
  • Code in the html-markup.
  • Bloated code-behinds.
link|flag
This wasn't an area to bitch about what you don't like about ASP.NET – FlySwat Oct 7 '08 at 16:35
You need code somewhere: pick one. – Joel Coehoorn Oct 8 '08 at 2:01
I am not bitching, I have been burned more than once due to those two bullet points. And yes, I need to put the code somewhere, but we aren't limited to the markup or codebehind, are we? – Thomas Eyde Oct 11 '08 at 19:45
vote up 1 vote down

When using a gridview without a datasource control (i.e. binding a dataset straight to the control) you need to manually implement sorting and paging events as shown here:

http://ryanolshan.com/technology/gridview-without-datasourcecontrol-datasource/

link|flag
vote up 1 vote down

I just learned this today: the Bind() method, as used with GridViews and ListViews, doesn't exist. It's actually hiding some Reflector magic that turns it into an Eval() and some kind of variable assignment.

The upshot of this is that calls like:

<%# FormatNameHelper(Bind("Name")) %>

that look perfectly valid will fail. See this blog post for more details.

link|flag
vote up 0 vote down

Page_Load is run before control handlers. So you can't make changes in an event handler and then use those changes in the page load. This becomes an issue when you have controls in a master page (such as a login control). You can get around the issue by redirecting, but it's definitely a gotcha.

link|flag
vote up 1 vote down

Linq: If you are using Linq-To-SQL, you call SubmitChanges() on the data context and it throws an exception (e.g. duplicate key or other constraint violation), the offending object values remain in your memory while you are debugging, and will be resubmitted every time you subsequently call SubmitChanges().

Now here's the real kicker: the bad values will remain in memory even if you push the "stop" button in your IDE and restart! I don't understand why anyone thought this was a good idea - but that little ASP.NET icon that pops up in your system tray stays running, and it appears to save your object cache. If you want to flush your memory space, you have to right-click that icon and forcibly shut it down! GOTCHA!

link|flag
vote up 0 vote down

If you are running Classic ASP applications in the same Virtual Directory as you ASP.Net application, the fist hit on the application must be on an ASP.Net page. This will ensure that the AppPool be built with the right context configurations. If the first page to be hit is a Classic ASP page, the results may vary from application to application. In general the AppPool is configured to use the latest framework.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.