I recently had to configure google apps email for dotnetpanel, the following link was helpful for me in that regard. Special thanks to Shai Ben-Naphtali
Link:
http://blog.arvixe.com/dnp-dotnetpanel-setup-google-apps-mx-cname-and-spf-records/
I recently had to configure google apps email for dotnetpanel, the following link was helpful for me in that regard. Special thanks to Shai Ben-Naphtali
Link:
http://blog.arvixe.com/dnp-dotnetpanel-setup-google-apps-mx-cname-and-spf-records/
While reviewing the jquery code for a project developed at syneity. I came across the following javascript where dynamic html was handcoded and then applied to a table, we had encountered several such situations and it was a buggy experience. This blog details the refactoring i made to the same.
The problem:
A T4 Template is normally added to a project and this gets executed whenever the user adds the template to the project / whenever a user saves the text template. Now i had a requirement when i needed to execute the T4 template programmatically. I had the following options:
T4 templates have been a great way to generate code in visual studio, and at SyneITY we use code generation where developers find themselves repeating things. T4 has helped us achieve much better productivity. Also special thanks to Tangible for their Syntax Highlighting without which T4 wouldn’t have been a piece of cake.
We needed to implement paging and this is how we at SyneITY went about it. Since we were using Sql Server 2008 we decided to go for using the Row_Number() function along with CTE (Common Table Expression).