Tag: C#

Browse all posts tagged with C#

Salesforce CRUD operations using C# in AuctionWorx (ASP.NET MVC application)

by: Dhanashri Karale on: 27-Feb-2017 in: Programming

In this blog post, we have explained how we can perform CRUD operations with Salesforce custom objects. We have integrated Salesforce with RainWorx AuctionWorx software (ASP.NET MVC application). Refer our previous blog "Integrate Salesforce with C# or ASP.NET MVC Application", where we have shown how you can set up a project for Salesforce integration. Salesforce integration will allow better interaction between customer support team and bidders/buyers post bid/purchase process.

Read More

Use Lucene.Net in for faster data search

by: Dhanashri Karale on: 12-Feb-2017 in: Programming

This tutorial explains how to use Lucene.Net to achieve faster search responses in ASP.NET or MVC or C# applications. You can use Lucene.Net library to create indexes and search to retrieve the data which can be sorted by relevance or by a sort field.

Read More

Create a Grid View with paging and sorting feature using ASP.NET MVC Razor and LINQ

by: Ravindra Parcha on: 20-Apr-2013 in: Programming

Recently, I came across a requirement to create a Grid View with paging and column sorting feature. Since, I was using ASP.NET MVC there was no server side control such as Repeater, GridView or DataList which are available in ASP.NET. I googled but didn’t come across a good solution except few third-party paid ASP.NET MVC controls. So finally I decided to code my own Grid View with support for paging and column sorting with help from information available on blogs and forums. Even though I am showing the code in context of an example its extensible enough to reuse it elsewhere.

Read More

Uncheck Radio Button in WPF

by: Nilesh Anchan on: 23-Mar-2013 in: Programming

Recently I found myself in need of uncheck my selected Radio Button in WPF (Windows Presentation Framework). Unfortunately Radio Button has an unchecked event but it doesn’t fire. I thought of implementing uncheck onClick event, but even in this case it always givesChecked valuetrue after clicking on Radio Button. I started searching for examples in internet, but didn’t find an appropriate way to achieve this. One way I thought of styling the Checkbox to look like a Radio Button, but doing so is also had few issues. Then I thought of extending the Radio Button and use Dependency Property to achieve the same. This article describes the implementation of the Radio Button that supports uncheck and the way you can use it in your own applications. You can find the full implementation ofRadioButtonExtensionclass in the attached demo.

Read More