3 Kasım 2013 Pazar

config error with first asp.net mvc project

Lynda (http://www.lynda.com/ASPNET-tutorials/ASPNET-MVC-4-Essential-Training/109762-2.html) seems to be a good source for starting asp.net mvc. However, if you install mysql after installing Visual Studio, you may come up with the following error while running your first mvc project:

The solution is, find the file specified inside the red ellipse, run notepad as administrator, open the file and comment out the specified lines. This solution worked for me!

8 Ağustos 2013 Perşembe

bootstrap

I am trying to refactor telerik interfaces with bootstrap.. Telerik components such as radgrid and radscheduler are very talented, so i want to keep them as they are. In order to be sure they fit well (visually) with bootstrap, i am using simple telerik skin.
In this post, i am planning to share some useful links containing bootstrap examples:


2 Temmuz 2013 Salı

printing enum in .ascx

Printing value of an enumeration in .ascx :
1:  <telerik:GridTemplateColumn HeaderText="Univ" DataField="Stud.EnumUniv"  
2:            UniqueName="Stud.EnumUniv" SortExpression="Stud.EnumUniv"  
3:            HeaderStyle-Width="100px">  
4:            <ItemTemplate>  
5:              <%# Enum.Parse(typeof(SauEnum.EnumUniv), DataBinder.Eval(Container.DataItem, "Stud.EnumUniv").ToString()).ToString()%>  
6:            </ItemTemplate>  
7:          </telerik:GridTemplateColumn>  

29 Haziran 2013 Cumartesi

converting .dmg file to .iso

http://www.crystalidea.com/anytoiso free version successfully converts .dmg files to .iso, but there is a 850MB limit on file size.
http://www.winarchiver.com/ can be used for larger files..

mac os on windows pc using virtual box

Here is a great article showing steps to run mac os on a windows pc using virtual box: http://www.lifehacker.com.au/2012/08/how-to-run-mac-os-x-on-any-windows-pc-using-virtualbox/

The key idea is enter boot with HackBoot ISO, then change virtual CD to hacked Mountain Lion ISO and press F5 to be able to see it..