1
vote
__doPostBack is not working in firefox
I have had problems with firebug on some web forms, something to do with the network analyser can screw with postbacks.
…
0
votes
Ping always succeeds, cant easily check uptime using ping on a url
Don't directly know of any off the shelf options in c#, although I'd be very suprised if there aren't a few available.
I wrote something similar a few years ago, don't have the code anymo …
0
votes
Visual Studio 2008 crashes horribly
I have the same apps running on my machine (on Vists32), and have not hit that problem.
Sounds suspiciously like a RAM problem to me, although I had a bad hard drive in a test server caus …
1
vote
SQL DataReader missing a row in loop
Have you tried stepping through this in a debugger, and checking your command params before you exec the reader? Do you get the same values in the result set as when you run the sproc direct on sql …
0
votes
Naming Conventions in C#
I generally try to follow the microsoft guidelines, with a few very old habits thrown in.
So, I still can't get out of the habit of prefixing privates with an underscore _privateMember. …
1
vote
0
votes
Declare a generic type instance dynamically
Pretty sure you can do that, they don't have to be fixed at compile time like templates in c++.
An example that is similar here: …
0
votes
ASP.NET - controls generated by xslt transformation
Could be tricky with a pure XSL solution.
You might be able to call a template which iterates the xml nodes you are using generate the controls, and writes out a c#/VB script block which …
1
vote
An Easy Way to Consume a Twitter Search Feed With ASP.Net
Depending on what sort of hammer you prefer, you could use:
An XSL transform, easy if you know
XSL, painful if you've never used it
Load it into an XmlDocument …
0
votes
Load an ASP.NET 2.0 aspx page using System.Reflection?
Don't know about doing it using Reflection, which may well be possible, but you can capture the output of an aspx or asp page to a string writer using HttpContext.Server.Execute().
I have use …
1
vote
What would the best approach to follow to learn CSS?
In addition to the good suggestions already offered:
http://www.mezzoblue.com/css/cribsheet/ - by Dave Shea - has a lo …
6
votes
How to get into SubSonic?
Unfortunately, the best SubSonic "documentation" is in the form of screencasts, but they are very easy to follow.
Quite a lot about SubSonic on Rob Conery's (original creator) blog …
4
votes
Why is C# suddenly so popular?
C# behaves like I always wanted java to behave.
It generally "feels" like I write less code to achieve the same outcome than the equivalent in java. Java seems to force you to be "enterp …
0
votes
Handling long page execution times in ASP.NET
A quick and dirty option might be to set Page.Server.ScriptTimeout to a really high value on that page. (I think it maxes at Int.MaxValue).
Probably advisable to block the submit button a …
1
vote
Why can’t my software initialize hardware on a different motherboard?
If it's not a hardware/driver issue then a few other things may be going on.
A bit (lot) of a stab in the dark, but it might be that the kiosk software might have a hard coded string or " …
