-
Fast Prototyping
I like Pencil .It is fast,easy to use – but you have to download those : http://code.google.com/p/evoluspencil/downloads/list?q=label:Template . What I like most it is that have a Firefox extension .
-
Friday links 44
The Database Deluge… Who’s Who 10 free tools for admins on a tight budget | TechRepublic Programmer Interrupted Programmers: Before you turn 40,get a plan B « Improving Software Inspiration and Chai Marketing to Women :: Marketing to Affluent Women Online RealTime Data Compression: Selecting a Checksum algorithm Cargo Cult Coder: What Databases Fix Masterminds…
-
Friday links 43
Doom3 Source Code Review: Introduction Simple way to bind an Enum to a DropDownList in MVC Easily Add a Table of Contents to Any Web Page with jQuery What Can We Learn About Software Security by Going to the Gym Conference hacking for beginners: my top tips – Hans Raffauf – The Kernel Windows Startup…
-
Modifying from MVC to WebAPI
I have to make a private personal site to work with Android / IPhone /Windows Phone natively. So I have to open the data from the site. But what is better then http://en.wikipedia.org/wiki/Eating_your_own_dog_food ? So I decide to do modifications for this The site was a simple listing of steps to solve a dangerous situation…
-
Export Data Table to Excel-Word-PDF-CSV-HTML-XML–Razor style
This tutorial show you how to export a DataTable to Excel,Word,CSV,HTML,PDF. GitHub Demo at https://github.com/ignatandrei/Export_Word_Excel_PDF_CSV_HTML The Nuget package is at http://www.nuget.org/packages/Exporter/ YouTube demo at http://youtu.be/jo0v8Asm3sE
-
MVC Export List of objects to Excel-Word-PDF-CSV-HTML-XML–Razor style
This is the second part of the demo of the Exporter in action – this time in MVC . It is a little more complicated,because you need to show to the exporter the full path where to put the generated file string filePathExport = Server.MapPath(“~/exports/a” + ExportBase.GetFileExtension((ExportToFormat)id)); All others are the same easy stuff -add…
-
Export to Word / Excel / PDF / CSV / HTML
I have made a NuGet package that exports a List to Word(2003/2007) / Excel(2003/2007) / PDF / CSV / HTML. It is made with Razor Templating – interpreted by WestWind Razor Engine ( source code at https://github.com/RickStrahl/Westwind.RazorHosting ) What it does it generates templates in Razor ( that can be freely modified after) and it…
-
SameId – skip
In the previous post I have show how two users can see each other if they are editing the same product ( in my example,product id 5) But not in all cases the users should be notified about each other – like in,let’s say,view product Id 5. In this case we have an attribute to…
-
Same object edited by 2 users–proactively notifying users
This is a practical example about how two users that comes on the same page will be notified one about other( after an idea of Adrian Petcu) . See the picture : With the NuGet package you can install in your application in this steps: To run : 1. install package from Nuget 2. in…
-
.tt files to maintain assembly version in sync
Let’s suppose you have a medium-big application and you have several dll-assemblies-component that the main application references( DAL,BLL). You have several deployments of the application at clients and,when a client,you must find each version of each assembly deployed. I have developed a simple .tt file to ensure that every component that you compile have the…
I am ok , you are ok