Posts

Applications of Artificial Inteligence

http://www.mediafire.com/?7dbd7gi27efg6qh Download Slides

How to view the list of Installed SharePoint 2010 solutions?

Image
How to view the list of Installed SharePoint 2010 solutions? How to view the list farm level solutions in SharePoint 2010?

Picasa Error : the current user is not allowed to install or update applications

Image
While installing Picasa on my newly installed OS on my machine i got this error " the current user is not allowed to install or update applications". after googling and spending sometime i got that its not actually picasa issue, its because of my OS and i tried a solution that worked for me. Solution 1. Go to Server Manager >> Features >> Add Feature  2. Check Deskop Experiance and install it. 3. Reboot the system and its gone.

How to use Checkbox in Kendo UI open source Grid

You can easily put a checkbox in Kendo UI Grid. Just define its template while defining the columns  See the code below... scrollable: true,                         sortable: true,                         filterable: true,                         columns: [                             {                                 field: "FirstName",                                 title: "Location (City Country)",                                 width: 100       ...

How to Pass a Model in MVC Jquery AJAX call?

I got this simple solution from stackoverflow and it worked for me. Model: public class AddressInfo { public string Address1 { get ; set ; } public string Address2 { get ; set ; } public string City { get ; set ; } public string State { get ; set ; } public string ZipCode { get ; set ; } public string Country { get ; set ; } } Controller: public class HomeController : Controller { public ActionResult Index () { return View (); } [ HttpPost ] public ActionResult Check ( AddressInfo addressInfo ) { return Json ( new { success = true }); } } script in View: < script type = "text/javascript" > var ai = { Address1 : "423 Judy Road" , Address2 : "1001" , City : "New York" , State : "NY" , ZipCode : "10301" , Country : "USA...

How to set "Search" button as default on Enter using Javascript

How To set Default Button  for ENTER key pressed event? Or Setting enter key   default button  when login control and  search   ? You can submit a form when you enter something in a search field and press Enter (Return) button on keyboard using javascript code. < input type ="text" name ="searchFor" onkeydown ="if(event.which || event.keyCode)                                                      {if ((event.which == 13) || (event.keyCode == 13))                                                      {document.getElementById('your search button ID').click/>

Failed to connect to the Internet once repaired LAN connection

Image
Some times windows throws this error when you repair your LAN connection and then could not connect to the internet until you reboot your system. The error comes " windows could not finish repairing because renewing your ip address " once you click Repair option. Then you can not connect to the internet once you repair  your wired or wireless connection. Solution: Go to Control Panel >> Administrative Tools >> Services Locate DHCP Client and start it. That's It.