world wide web development problems asp net php html xhtml css javascript jquery w3dproblems
Saturday, November 22, 2014
How to set the database owner (DBO) has EXTERNAL ACCESS ASSEMBLY permission as TRUE?
EXEC sp_changedbowner 'sa' ALTER DATABASE [dbase] SET trustworthy ON
asp net c# How do you convert Byte Array to Hexadecimal String, and vice versa?
public byte[] GetStringToBytes(string value) { var shb = System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary.Parse(value); return shb.Value; } public string GetBytesToString(byte[] value) { var shb = new System.Runtime.Remoting.Metadata.W3cXsd2001.SoapHexBinary(value); return shb.ToString(); }
Monday, November 17, 2014
System.InvalidOperationException: Stack empty listview
Real Error
Solution
System.ArgumentException: An entry with the same key already exists.Solution
Hide InsertItem While Editing in listview asp net c#
Friday, November 14, 2014
Remove the last character in a string in T-SQL?
SELECT SUBSTRING( 'string' , 1 , LEN( 'string' ) - 1 ) --or SELECT LEFT( 'string' , LEN( 'string' ) - 1 )
Subscribe to:
Comments (Atom)