WOW!

by MiladKDZ 26. September 2009 01:02

I miss this place!

Btw, I have to find a solution to the ridiculous SPAM problem!

Tags:

Personal

A few tips about ASP.net MVC

by MiladKDZ 2. May 2009 11:49

I started my first project with ASP.net MVC 2 days ago and I find it so much Interesting.

But I faced some Problems in it and I immediately found solutions using Google! (Thanks to MVC Community folks)

I also discussed writing a Helper method for HTML File Input Control in MVC with Dear Mahdi .

The most noticeable thing with MVC is the clean HTML that you get in runtime! Web development is so much fun with ASP.NET MVC ;-)

Tags: , ,

ASP.net | Computer | Programming

Enumerables

by MiladKDZ 6. March 2009 11:56

Just a little note!

The ExecuteQuery() Method from DataContext class, returns an instance of IEnumerable.
If you wanna determine if your Enumerable Instance is empty or not(Maybe you have performed a search operation using LIKE operator), you can use this piece of code:

YouEnumerableName.Equals(Enumerable.Empty<YourType>())

Tags: , ,

ASP.net | Computer | Programming

ASP.net File Upload Control

by MiladKDZ 24. February 2009 00:22

Well I'm working on a boring project but I'm learning too much! For example:

ASP.net's File Upload control has a 4MB  file length limit by default. [Basically every HTTPRequests should be less than 4MBs in an ASP.net Application by default]
So ... To overcome this limit, you can add this tag to your web.config file:

<httpRuntime maxRequestLength="4096"/>

Where you can replcace "4096" with any length in KBs.

µ

Tags: , ,

ASP.net | Computer | Programming

Some handy links for ASP.net MVC

by MiladKDZ 14. February 2009 22:10

Tags: , ,

ASP.net | Computer | Programming

3 Hours

by MiladKDZ 8. January 2009 01:55
I wish the longest 3 hours ever for the innocent people in Gaza.

µ

Tags: ,

Personal | World

Bellman-Ford Algorithm Implementation in Visual Basic.NET

by MiladKDZ 17. December 2008 13:31
This is for my Data Structures Class.
Bellman-Ford algorithm is used for finding the shortest path in a graph when there are negative weights in it.
You're gonna need Visual Studio 2008 and .net Framework 3.5 to run this project.

M

BellmanFord.zip (100.05 kb)

Tags: , ,

Computer | Programming | University