ATTENTION: I've decided to put the upgrade on hold due to a compatibility issue of our server environment with the latest CS installer package. CS 2008 now requires SQL Server 2005 as the backend DB but our database server currenlty has SQL Server 2000 installed on it. I'll resume the upgrade once I figure out when Telligent is releasing a patch to the schema compatibility issue. For now, we will continue to use the old version of CS while waiting for the said patch. If you have any questions about this process, please don't hesitate to post them on our forums and I'll answer them as soon as I can. Thanks for your patience and support guys! I'll let you know as soon as this is resolved. - Keith Rull

July 2005 - Keith Rull

  • Part 3: Creating CSV in ASP.NET

    In Part 1 and Part 2 of this series, we have used column mappings and index mapping to generate our csv files. These approach requires us to loop thru each colum to create the header, the loop thru again to create the rows. The problem with this approach is the amount of time spent in coding such procedures, well, its not that long... but considere this, if you could do something in a short amount of time with shorter lines of code and changing from one approach to another approach would make yo...
  • Part 2: Creating CSV in ASP.NET

    In Part 1 of this series i have showed to you how to use a IDataReader in creating a function that would generate a CSV file. In part 2 of this series I'm going to show you how to accomplish the same task but this time using a different object. We will still implement the same concept that we used in Part 1 but shortening code by using native properties of a DataTable in accessing rows and columns....
  • Part 1: Creating CSV in ASP.NET

    Part 1 shows us how to create CSV files in both C# and VB.NET using techniques that were used back on the old days of ADO and OLEDB but implementing them using native ADO.NET objects(IDataReader) instead of recordsets. We use a IDataReader instead of a provider specific reader (SqlDataReader, OleDbDataReader) for usability of code. This makes our function not provider dependent....
  • File System Browsing: New Approach vs. Old Approach

    File System Browsing: New Approach vs. Old Approach. this demonstrates how to use the a datable combined with filesystem objects to browse for folders and files. This also deffirentiate the different techniques in doing this task, from the classic programmers point of view, to the asp.net point of view...

Copyright DevPinoy 2005-2008