Enterprise Library June 2005

A new version of enterprise library has been released, check out msdn

Question by Mr. Stranger

Ok i received a question from a strager straight into my Yahoo email account. This was my response.
Ahhh, just have a ASP.NET or any button with onclick calling a function. When user clicks the button just do the submit using javascript like below.
function WillSubmitToExternalUrl()
{
document.forms[0].action = “http://gateway.upshotonline.com/UpShotDev/DynamicGenerator.dll”;
document.forms[0].submit();
}
You can also do a post using WebRequest/WebResponse classes. But [...]

TheServerSide.NET says I am Top Poster of week !

Ahh http://www.TheServerSide.net says i am top poster of the week. Yeah i usually answer questions. I think TSS gets only few users who actually post questions, so i ended up being top 5 guy of the week. Hmmm… Its not like http://www.asp.net, http://www.dotnetjunkies.com, or http://www.dotnetspider.com where you get shit loads of users and questions placed [...]

Database Comparision Results between SQL Server 2000 and Oracle 9i

Ok here is my outcome of my tests. I ran these tests on my home PC. When Oracle services was running, SQL Server services were stopped and vice versa.
It took 13 minutes some odd seconds to create 10 million records, but Oracle took 1:21 seconds
I also observered that DB size has grown in SQL Server [...]

Which is beter DB?

Ok this is intresting topic. We started a discussion about databases. In just my past company we have develop & deployed 35+ SQL Server based applications and few Oracle ones. A colleague of mine gave me a run though IBM DB2. It sounds like very promising database. I just want to run a script on [...]

Hmmm… took a while, but Add-in works well

Hmmm… took a while, but Add-in works well. It now reads the config and starts replacing the code. I also developed it so user can choose the HOTKEY. It is basically a Macro, which can be triggered using mouse Click or HOTKEY.
Now i want more. Say, In case of for loop, i want it to [...]