Search Results

1
vote

What’s a good way to determine what’s in my viewstate?

I used to use trace.axd. It lists each request and dumps the contents of the viewstate. You'll have to enable tracing in web.config. If you've got lots of requests you'll want to update the cach …
1
vote

Force ASP.NET clean compile

Shutdown IIS (make sure the wpworker procs are killed), blow away the WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files and blow away any dlls in your own bin directory. Once you r …
-1
votes

AES in ASP.NET with VB.NET

Markt pointed out that Rijndael uses the AES encryption algorithm. Since a managed implementation ships with the .net framework (and has si …
-1
votes

how to bind asp.net controls using a self join and items tables “hierarchically structure”?

Oracle had a CONNECT BY statement that was designed for hierarchical queries. At least as of Sql Server 2005 I don't believe there was a direct equivalent so you had to fake it with stored procedu …
0
votes

Debugging .Net OracleClient error

Make sure to turn off autocommit. Also, there are some statements that can't be sent in a batch (e.g., DDL) - for those you'll either have to send them separately or use execute_sql …
0
votes

ASP.NET MVC > ASP.NET WebForms, Why?

I'm also taking a wait-and-see attitude about ASP.NET MVC (along with the Entity framework and WPF for diff reasons). I'm a huge fan of MVC in general but am a little concerned about wrapping some …
1
vote

How the send a webform by email

Using the SmtpMail class in System.Web? …
1
vote

using viewstate across servers in a farm

As long as tamper protection/MAC is turned off I believe it can. …
1
vote

Getting requester’s login in ASP.NET/VB.NET

HttpRequest.LogonUserIdentity? …
1
vote

How do you handle a thread that has a hung call?

Managed threads can't directly stop native threads. So if the call is blocked in native code then the best you can do is have the managed thread check then terminate once it returns. If it never …
0
votes

mixing html and C#

If you use @string literals you can escape double quotes with 2 double quotes. Slightly more readable (but not much)... …