0
votes
Stripping xml document of tags, removing line breaks and adding custom line breaks
Michael Haren's XSLT response is the best answer.
But alternatively if you're not actually wanting the response as XML you can return whatever it is that you DO desire from the web service …
0
votes
What would be the most convenient way to connect Visual Studio 2005 (C#) to Oracle8?
I would warn against building an architecture like you're suggesting. Opening a new connection to the database to poll for changes every second is an expensive operation. It gets worse if you're tr …
2
votes
What would be the most convenient way to connect Visual Studio 2005 (C#) to Oracle8?
Here's a sample from our environment:
<add key="ODP.NET.ConnectionString" value="Password=abcdefg;Persist Security Info=True;User ID=abc123;Data Source=blah;"/>
…
0
votes
C# - Sorting a list when it has more than one value per ‘row’ ?
Use ArrayList.Sort(IComparer) instead of ArrayList.Sort().
…
1
vote
VS2005 SP1 breakpoints in Vista Ultimate 64 not working
This is listed as a known issue for VS2005 on Vista (Via MSDN):
Title …
2
votes
What is the best practice for handling null int/char from a SQL Database?
A decent discussion on this is at http://stackoverflow.com/questions/221582/ …
2
votes
How to detect when laptop power cable has been disconnected?
This will probably get closed as not-programming-related, but you may want to check your BIOS setttings.
My Lenovo laptop does exactly what you're suggesting natively. There is a setting in …
