|
|
-
|
|
Powershell is a free, powerful and handy tool which worths a try and now (since Windows 7) comes bundled with windows.
To rename every files (in a case sensitive manner) of the current directory and its subdirectory, you may proceed like this:
[code......
|
|
-
|
|
Powershell is a free, powerful and handy tool which worths a try and now (since Windows 7) comes bundled with windows.
To replace a set of words with others (in a case sensitive manner) in every files of the current directory and its subdirectory, yo......
|
|
-
12 Liked
| 13 Learned
| 1 Comments
|
|
Recently I noticed that Deleting a database which is in offline leaves physical files intact......
|
|
-
|
|
Following new dynamic management views which are new in SQL Server 2012
[code]
1. sys.dm_server_memory_dumps - It contains information about memory dump files created by SQL Server
2. sys.dm_server_services - It contains information about vario......
|
|
-
|
|
We know that by using "Remote" attribute, we can call server-side function and validate the entered value by user. Now i got additional requirement of server-side function needs few more field values entered by user from client-side. Remote attribute h......
|
|
-
|
|
In my previous post I discussed about generating auto-generate serial no. in a GridView using Container.DataItemIndex. However, this property will not work for Repeater and Datalist. For these controls, there is another property called ItemIndex , which......
|
|
-
|
|
Just learned that the matching datatype for sql datatype TINYINT in Microsoft .net Framework is BYTE......
|
|
-
15 Liked
| 14 Learned
| 4 Comments
|
|
In IE, when you open multiple tabs in the single window, you can copy urls of all opened tabs using below steps
In the menu
1 Go to Tools-->Internet options
2 In the General tab, click the button labelled Use current. It will display all urls......
|
|
-
|
|
When there is a need to show a serial no in Gridview on selected datasource then I was doing it in query (SQL Server) using RANK OVER(). But in the current project I am working on, needs some GridViews to be populated from XML datasource and some from m......
|
|
-
|
|
Until Silverlight4, while saving a file through SaveFileDialog, you can't specify default file name. On opening save file dialog, user has the additional task of entering filename. Now in Silverlight5, you can specify default file name.
[code]
S......
|
|