In my recent project my client wanted to have index options for authors / manufacturers. Like the following A B C D.. E I just wanted to make changes in my cshtml itself and dont want to change anything in the controllers or dont want to make it complicated. I may be very lazy ;-). So I came up with this idea. As you aware, MVC binds Model to view. I am using IList<Authors>. So I used the following code in my view. <div id=”pagination-bottom” class=”pagination pagination-centered”> @if (Model.Count > 0) { List<string> alpha = Model.Select(u => u.Name.Substring(0, 1)).Distinct().ToList<String>(); alpha.Sort(); <ul class=’unstyled’> @foreach (string al in alpha) { <li><a href=”@Request.Url.Scheme://@Request.Url.Authority@Request.Url.LocalPath?filter=@al”> @al</a></li> } </ul> } </div> IList<ManufacturerModel> filteredModel; filteredModel = Model; var filter = Request.QueryString[“filter”]; if (filter != null) { filteredModel = Model.Where(m => m.Name.StartsWith(filter)).ToList<ManufacturerModel>(); } Hope this helps some one in need…...
Read MoreFree Microsoft e-books.
Free Microsoft e-books are available at the following website. There is no time limitations and those books are always readily available for download. From SharePoint, visual studio to azure, all kind of books are available. Grab your copy today....
Read MoreSetting up payment gateway in India
Recently one of my client required have an e-commerce set up. So I have started inquiring about various online payment options. As I am a free lancer from US, I have very little idea about payment gateways in India. When I have started gathering information about it, I shocked about the formalities they have and the cost they are asking to set up and AMC. In US, the leading payment providers such as Paypal, Authorize.net and Google are following simple and straight forward processes which will take only less than a day to set up. But in India it is very difficult and most of the payment gate way service providers are not transparent. They are not ready to reveal about their service fees. Why is that? Whenever a person needs to have such service, he should be able to compare the services provided by them. http://dbgorg00d8r0p.cloudfront.net/wp-content/uploads/2012/01/Setting-Up-Payment-Gateway-In-India.pdf finally I found a good document available in the internet. Thanks to the person who put together this information. ...
Read MoreVisual Studio 2012 Release Candidate – Set up Experience..
Visual Studio 2012 RC has been released today. and I am very happy to download and install Express edition for Web. I cannot resist myself 🙂 So quickly I would like to share my set up experiences. The installer has been modified to match Windows 8 standards. While installing the product, it wanted me to restart my machine couple of times. First time, after installing the framework (.Net Framework 4.5) and second time after installing the complete product. So look at the screen shots below in the order.. 🙂 This slideshow requires JavaScript. You can found “what’s New” from the following link. http://msdn.microsoft.com/en-us/library/hh420390(v=VS.110).aspx I will be back with few tutorials about new...
Read MoreIntroduction to Complex UIs Using jQuery UI
Guys, I have come across this and found it is very useful.. Building a web application with jQuery makes the task easier. Similarly, building a web application with a complex UI is made easier with jQuery’s sister project jQuery UI. With jQuery UI we have a collection of interactions, widgets and a theme builder at our fingertips that allows us to make a cohesive UI. To continue reading click...
Read MoreAre you going to install VS2010 in your new Laptop
Hi Guys, Did you buy new laptop? Are you going to install VS2010? Please stop and read this blog. Please install them in the following order.Otherwise you are at risk to format your OS and reinstall everything once again 🙁 1. Install IIS with the following features: ( Control Panel –> Programs –> Turn Windows Features on / Off) i) Internet Information Services with the following options selected. iii) Your system will be restarted once. iv) Install Visual Studio 2010 v) Install Sql Server 2008 You will be good to...
Read More