Posts

Showing posts from February, 2016

[Error] : The DELETE statement conflicted with the REFERENCE constraint

Pada posting tentang  " [Error] : The DELETE statement conflicted with the REFERENCE constraint " akan dijelaskan solusi untuk permasalahan diatas. Solution : 1. Disable constraint, here the syntax : -  Disable all table constraints ALTER TABLE  YourTableName  NOCHECK CONSTRAINT  ALL - Disable single constraint ALTER TABLE  YourTableName  NOCHECK CONSTRAINT  YourConstraint -- Disable all constraints for database EXEC  sp_msforeachtable  "ALTER TABLE ? NOCHECK CONSTRAINT all" 2. Execute Delete/Insert Quuery. 3. Enable constraint, here the syntax : - Enable all table constraints ALTER TABLE  YourTableName  CHECK CONSTRAINT  ALL - Enable single constraint ALTER TABLE  YourTableName  CHECK CONSTRAINT  YourConstraint - Enable all constraints for database EXEC  sp_msforeachtable  "ALTER TABLE ? WITH CHECK CHECK CONSTRAINT all" Recommended Reading: Format HTML table cell so that Excel formats as Text In ASP.NET? Semoga posting diatas tentang "

Format HTML Table Cell For Excel Text Formats In ASP.NET

Pada posting Format HTML Table Cell For Excel Text Formats In ASP.NET  akan dibahas cara export ke excel untuk gridview. Pada umumnya tipe data di excel cell akan menyesuaikan dengan format yang ada di gridview. Agar hasil export berupa text, maka kita dapat menambahkan CSS dibawah ini untuk memaksa format cell didalam excel menjadi text. Dibawah ini adal CSS yang kita tambahkan pada bagian head di HTML body. <style>         td         {             mso-number-format:"\@";         } </style> Recommended Reading: The DELETE statement conflicted with the REFERENCE constraint Semoga posting tentang   Format HTML Table Cell For Excel Text Formats In ASP.NET   ini  dapat bermanfaat. Salam,