Posted by: jwalin on: February 13, 2009
SSIS Architecture
SSIS is a component of SQL Server 2005/2008 and is successor of DTS (Data Transformation Services) which had been in SQL Server 7.0/2000. Though from end-user perspective DTS and SSIS looks similar to each to some extent, it is not the case in actual. SSIS has been completely written from the scratch (it’s [...]
Posted by: jwalin on: February 11, 2009
Microsoft has redesigned version 2.0 of the Data Access Block to take advantage of new ADO.NET 2.0 features. You can download the Enterprise Library Data Access Application Block from MSDN.
1] Using Application Data Block (Change in Web.Config)
To use the Data Access Block successfully, you will need to go through the steps listed below:
Add a reference [...]
Posted by: jwalin on: February 11, 2009
Good articles for SQL Server. It give series of the one topic
http://www.databasejournal.com/article.php/1503191
Posted by: jwalin on: February 11, 2009
If you wants to reset the primary number seed
dbcc checkident (‘TableName’, RESEED, 5000)
Posted by: jwalin on: February 11, 2009
http://weblogs.asp.net/stephenwalther/archive/2008/10/17/a-guide-to-learning-asp-net-mvc-beta-1.aspx
Posted by: jwalin on: February 11, 2009
Hello
If you are new in silverlight and you do not know how to write the program. Here is the samples of silverlight. You can download it.
http://silverlight.net/themes/silverlight/community/gallerydetail.aspx?cat=sl2
Posted by: jwalin on: February 10, 2009
In this site you can find good articales for ASP.NET MVC.
http://stephenwalther.com/blog/category/4.aspx
jwalin
Posted by: jwalin on: February 9, 2009
Hi
Last week, I am working with AJAX Cascading dropdown and I found that it is not working with .ASMX file. I am always received 500 error. My first thought was my web service is not working I tried to call seperately and it is working perfactly. So I am looking on resources on internet but [...]
Posted by: jwalin on: February 9, 2009
http://www.codeproject.com/KB/aspnet/PeformanceAspnet.aspx
You can find details about the HttpHandler from this CodeProject article:
http://www.codeproject.com/KB/aspnet/HttpCombine.aspx
You can also get the latest code from this code site:
http://code.msdn.microsoft.com/HttpCombiner
Posted by: jwalin on: February 7, 2009
<add name=”Gallery” virtualUrl=”^(.*).domainname.com/(.*).aspx”
rewriteUrlParameter=”ExcludeFromClientQueryString”
destinationUrl=”wwww.domainname.com/Default.aspx?subdomain=$1&item=$2″
ignoreCase=”true” />
googlegroups.urlrewritingnetRe: How to url rewrite
Now this is just a guess, not sure if it would work, but trial and error is how you get good at this stuff