iloire

Stories submitted by iloire

Invoicing application in ASP.NET MVC3 - full source code(www.dotneat.net)

submitted by iloireiloire(310) 7 months, 15 days ago

Example invoicing application created on top of ASP.NET MVC3 (full source code included). Hosted in GitHub, every release (Tag) is showing an step forward in creating the application and applying every technique that makes ASP.NET MVC3 cool like: Code-first, EF, ajax partial views, editortemplates, T4 templates, Data Annotations, etc. Check it out! read more...

add a comment |category: |Views: 51

tags: another

Complete error handling in ASP.NET MVC3(www.dotneat.net)

submitted by iloireiloire(310) 1 year, 1 month ago

Complete error handling in ASP.NET MVC3 using a customized HandleError attribute and Elmah also explaining in detail the error handling mechanism of ASP.NET MVC. read more...

add a comment |category: |Views: 59

tags: another

Secure, synchronized, multiplatform password management(www.dotneat.net)

submitted by iloireiloire(310) 2 years, 1 month ago

Manage/store your passwords in a secure way and keep them synchronized across machines. read more...

add a comment |category: |Views: 5

tags: another

Working with SVN and DropBox without a dedicated SVN server (www.dotneat.net)

submitted by iloireiloire(310) 2 years, 2 months ago

Using DropBox to work within a SVN environment without a 24x7 online SVN server read more...

add a comment |category: |Views: 65

tags: another

.NET Serialization (BinaryFormater, SoapFormatter and XmlSerializer)(dotneat.net)

submitted by iloireiloire(310) 3 years, 1 month ago

Object serialization is the process of converting an object to a format that is suitable for persistence (database, file, etc) or transportation (remoting, Web Services, MSMQ, etc). This post shows how to serialize objects (whatever they are alone or within a generic or non generic collection) by using the three types of serializers available on .NET Framework 2.0 and above. Includes application example with full source code, and performance tests. read more...

add a comment |category: |Views: 66

tags: another

BackgroundWorker complete example(dotneat.net)

submitted by iloireiloire(310) 3 years, 3 months ago

Cancellation support, progress report and error handling. Example project in C# read more...

add a comment |category: |Views: 766

tags: another

Avoiding ASPX pages to be updated after delivery(dotneat.net)

submitted by iloireiloire(310) 3 years, 4 months ago

Avoiding ASPX pages to be updated after the project is delivered (by the client or someone else). Just a "publishing web site" checkbox option. read more...

add a comment |category: |Views: 7

tags: another

Adding your own Custom Controls to a ContextMenuStrip control.(dotneat.net)

submitted by iloireiloire(310) 3 years, 4 months ago

Using the ToolStripCustomHost class you can add your own custom controls to a ContextMenuStrip control with 3 lines of code. read more...

add a comment |category: |Views: 184

tags: another

Dynamic DataGridView filtering in C#(dotneat.net)

submitted by iloireiloire(310) 3 years, 5 months ago

In a few lines of code, we can convert a DataGridView in a powerfull searchable control with dynamically generated filters for each column of field the DataGridView is binded to. Easy, fast to operate, usable... good! Screenshots, video and full source code available. read more...

add a comment |category: |Views: 338

tags: another

Simple download protection for files and document using ASP.NET / C#(dotneat.net)

submitted by iloireiloire(310) 4 years, 5 months ago

Really simple, just a few lines of code. Without using HTTP Handlers or extension mappings in IIS. The documents are stored outside IIS scope and they are writted to the HTTP output stream using Response. WriteFile() read more...

add a comment |category: |Views: 151

tags: another

Storing a collection on your app.config using Section Handlers(dotneat.net)

submitted by iloireiloire(310) 4 years, 5 months ago

app.cofig: <MyProcesses> <process name="logReport" enabled="true" runevery="222" run="Myclass.Metod()" args="2,3,4" dosomething="" /> <process name="RunMaintenance" enabled="true" runevery="222" run="Myclass.Metod()" args="2,3,4" dosomething="" /> ... etc.. </MyProcesses read more...

add a comment |category: |Views: 135

tags: another

Using a RAM drive to compile faster Visual Studio .NET projects (dotneat.net)

submitted by iloireiloire(310) 4 years, 5 months ago

If you have a modern CPU (like a Core Duo), you may experience significant improvements since a RAM disk reads your code files at about 900 MB/sec!! read more...

add a comment |category: |Views: 375

tags: another

Inheriting from System.Exception or System.ApplicationException?(dotneat.net)

submitted by iloireiloire(310) 4 years, 5 months ago

What do you do? read more...

3 comments |category: |Views: 27

tags: another

Querying YouTube using C# and Google Data Client Libraries(dotneat.net)

submitted by iloireiloire(310) 4 years, 5 months ago

Querying YouTube using C# and Google Data Client Libraries with example code to download. read more...

add a comment |category: |Views: 219

tags: another