How to Tags inside HTML table

How to Tags inside HTML table: "

This table contain Image , link,
List and Paragraph tags

  • VB.Net
  • Csharp
  • Asp.Net
About
"



'via Blog this'

How to serialize and compress an object to FileStream?

How to serialize and compress an object to FileStream?: "try 
    { 
        FileStream fs = new FileStream(@"C:\Projects\Test\Test.txt", FileMode.Open); 
        GZipStream decompressor = new GZipStream(fs, CompressionMode.Decompress); 
        BinaryFormatter bf = new BinaryFormatter(); 
        CUnits ds = (CUnits)bf.Deserialize(decompressor); 
        decompressor.Close(); 
        fs.Close(); 
    } 
    catch (Exception ex) 
    { 
        MessageBox.Show(ex.Message); 
    } "



'via Blog this'

Tuesday, 7 October 2014

Monday, 6 October 2014