Since they are in sharepoint hive, you have to go to the web.config file in the Sharepoint root folder -> template-> layouts folder. set customerros mode=”off”
Category: Uncategorized
Connect to host’s wifi adapter from VirtualBox guest
It’s pretty weird,
Configure 1 adapter of the guest OS to use NAT. Then plug in the cable while disable wifi on host machine.
Once the internet works in the guest OS, unplug the cable and connect the host to WIFI network, the guest will then be able to connect to the Internet through host’s wifi.
Get index of an item using linq
customers.Select((c,i) => new { Customer = c, Index = i }) .Where(x => x.Customer.ID == 150) .Select(x => x.Index);
Start my own programming blog
At work I faced so many problems in programming. I figure I would start my own programming blog to document all my findings so I can refer to them later.