Bagavathi

Stories kicked by Bagavathi

IIS Express(web2asp.net)

submitted by sedgeysedgey(1728) 1 year, 10 months ago

If like me you are sick to death of Cassini (whats that then? its the built in web server that visual studio uses) and also sick to death of playing around with IIS 7 then relief is at hand. read more...

3 comments |category: |Views: 860

tags: another

.NET 4.0 has 2 Global Assembly Cache (GAC)(www.devcurry.com)

submitted by sahisahi(231) 1 year, 10 months ago

While reading an article on Understanding The CLR Binder, I found out that .NET 4.0 has 2 distinct GAC’s (Global Assembly Cache).In previous .NET versions, when I installed a .NET assembly into the GAC (using gacutil.exe), I could find it in the ‘C:\Windows\assembly’ path. With .NET 4.0, GAC is now .... read more...

add a comment |category: |Views: 761

tags: another

Learn SQL Server 2008 R2 - FREE - Official Tutorial(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 1 year, 11 months ago

SQL Server 2008 R2 is released and have been a stable product since the day it is released. I have not received any complains or rants from any of my customers who has upgraded to this version. The number one request is how one can learn about the new features of SQL Server or how one can get going in using SQL Server 2008. Microsoft has released SQL Server 2008 R2 Developers Training Kit. This is awesome kit and I just suggest to have a look at the content one time. read more...

add a comment |category: |Views: 1517

tags: another

Multi-Select List Box in ASP.NET MVC(blog.garypretty.co.uk)

submitted by GaryPrettyGaryPretty(175) 1 year, 11 months ago

Using a Multi-Select list box in MVC. Binding items to and getting the list of selected items back! read more...

add a comment |category: |Views: 1012

tags: another

Applying Software Design Patterns - Free Ebook (amazedsaint.blogspot.com)

submitted by amazedsaintamazedsaint(835) 1 year, 11 months ago

A short Ebook on Design Patterns - The objective is to introduce software design patterns in a simple, human readable, and funny (?) way - in the context of designing a soccer engine - By discussing the thought process behind applying design patterns read more...

add a comment |category: |Views: 660

tags: another

How to create a simple automatic image rotator using jQuery(www.burnmind.com)

submitted by guffshemrguffshemr(178) 1 year, 11 months ago

I’ll explain a simple way to create an automatic image rotator using jQuery. First have a look at the demo page to understand what we’re trying to accomplish. read more...

add a comment |category: |Views: 365

tags: another

RavenDB - What's the difference?(codeofrob.com)

submitted by robashtonrobashton(384) 1 year, 11 months ago

Intro to a series of posts comparing RavenDB against MongoDB and CouchDB read more...

add a comment |category: |Views: 36

tags: another

Code Contracts: validating arrays and collections(weblogs.asp.net)

submitted by gpeipmangpeipman(3145) 1 year, 11 months ago

Validating collections before using them is very common task when we use built-in generic types for our collections. In this posting I will show you how to validate collections using code contracts. It is cool how much awful looking code you can avoid using code contracts. read more...

add a comment |category: |Views: 7

tags: another

Using jQuery to Find which ASP.NET Control caused a PostBack(www.devcurry.com)

submitted by mopenmopen(3596) 1 year, 11 months ago

Here’s a simple script that uses jQuery to find out which ASP.NET Button caused a postback. You can similarly implement this script for other ASP.NET Controls too read more...

add a comment |category: |Views: 278

tags: another

TextBox AutoComplete with ASP.NET and jQuery UI(www.dotnetcurry.com)

submitted by mopenmopen(3596) 1 year, 11 months ago

This article demonstrates how to use the jQuery UI AutoComplete widget to consume an ASP.NET Web Service that is JSON Serialized. read more...

1 comment |category: |Views: 732

tags: another

URL Rewrite – Multiple domains under one site. Part II(weblogs.asp.net)

submitted by wisemxwisemx(8074) 1 year, 11 months ago

I believe I have it … I’ve been meaning to put together the ultimate outgoing rule for hosting multiple domains under one site. I finally sat down this week and setup a few test cases, and created one rule to rule them all. read more...

add a comment |category: |Views: 315

tags: another

Database Deadlock Mystery Resolved - Snapshot Isolation (blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 2 years ago

A Simple Solution to Resolve Database Deallocking and Blocking Issues read more...

add a comment |category: |Views: 370

tags: another

Going Lazy<T> with System.Lazy(www.dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years ago

Taking a look at the how to use the System.Lazy namespace in .Net 4.0. One of the pretty cool new nuggets inside the .Net 4.0 framework is System.Lazy and System.Lazy. What System.Lazy brings to the table is a way to create objects which may need to perform intensive operations and defer the execution of the operation until it is 100% absolutely needed. read more...

add a comment |category: |Views: 609

tags: another

Tips and Tricks to prevent SQL Injection in .Net Code(beyondrelational.com)

submitted by DPalkarDPalkar(228) 2 years ago

There are many detailed articles available on web on SQL Injection topic and hence I’ll just try to keep it short and simple in this post. SQL Injection is an attack in which malicious code is inserted into strings that are later passed to an instance of SQL Server for parsing and execution. This can allow an attacker to steal the data as well as modify and delete it. Conventional security measures like use of SSL and IPSec, do not protect the application from SQL injection attacks. read more...

1 comment |category: |Views: 430

tags: another

SQL SERVER – Find Most Expensive Queries Using DMV(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 2 years ago

The title of this post is what I can express here for this quick blog post. I was asked in recent query tuning consultation project, if I can share my script which I use to figure out which is the most expensive queries are running on SQL Server. This script is very basic and very simple, there are many different versions are available online. This basic script does do the job which I expect to do – find out the most expensive queries on SQL Server Box. read more...

add a comment |category: |Views: 484

tags: another

Derived Table - New approach to avoid SQL Injection(beyondrelational.com)

submitted by jacobsebastianjacobsebastian(3639) 2 years ago

This post demonstrates a new approach to avoid SQL injection by using derived tables. read more...

1 comment |category: |Views: 370

tags: another