Whats The Difference Between Manifest and Metadata
Metadata describes contents in an assembly, classes, interfaces, enums, structs, etc.
Manifest describes an assembly itself, Assembly name version number, culture, strong name, etc.
|
|
|
|
Known Is A Drop,UnKnown Is An Ocean....
Njoy Programming
Metadata describes contents in an assembly, classes, interfaces, enums, structs, etc.
Manifest describes an assembly itself, Assembly name version number, culture, strong name, etc.
|
|
|
|
Posted by windows_mss at 12/03/2009 0 comments
SELECT DB_NAME(dbid) AS db, COUNT(dbid) AS connection FROM SYS.SYSPROCESSES WHERE dbid > 0
GROUP BY dbid
|
|
|
|
Posted by windows_mss at 11/20/2009 0 comments
Just press the Ctrl key And drag The corresponding tab which is to Clone or duplicate
Supported By Firefox 3.x
|
|
|
|
Posted by windows_mss at 11/16/2009 0 comments
<html>
<head>
<script>
function validateContent(evt)
{
var pattern = /^\w[a-zA-Z@#0-9.]*$/;
if(evt.value.search(pattern) == -1)
{
alert('Space not Allowed');
return false;
}
}
</script>
</head>
<body>
<input type='text' onkeyup='return validateContent(this);' />
</body>
</html>
|
|
|
|
Posted by windows_mss at 11/12/2009 0 comments
DECLARE @srchString VARCHAR(1000)
SET @srchString='Procedure_Name'
SET @srchString = '%' + @srchString + '%'
SELECT O.NAME FROM syscomments C
JOIN sysobjects O ON O.id = C.id
WHERE O.xtype = 'P' AND C.TEXT LIKE @srchString
|
|
|
|
Posted by windows_mss at 10/16/2009 0 comments
|
|
|