
Search In
Authorize annotion:
Authorize annotion given in mvc to restrict the access to controller for authorized and unauthorized user.
Further the access can be restricted by their roles . It provides us to access the view for authorize users only, as view
Here in this blog i have used AJAX to search and provide result on the whenever user enter any character in the textbox. The result is coming from a PHP page. Ajax search is used for making the code easy to understand and for saving the users time, h
Bluetooth paired list will have list of devices which are already paired previously. Paired devices are the trusted connection established between two Bluetooth devices by "Passkey". Before calling this method please make sure that you have
In previous articles we already learned how to connect MySQL database and how to perform different queries using MySQLi. This article demonstrates some MySQLi functions which are used to retrieve row by row data from resultset. The complete article i
Products which you can sell in your application falls into these categories :
1.Standard in-app products(one time billing) eg: Premium Upgrade, Ads free version of the app.
2.Subscription(recurring,automated billing) eg: Game currency, music voucher
This example demonstrate how to use AngularJS with MVC5 and WebAPI for CRUD operations(Read,Insert,Update,Delete).
1. First step is to create table for CRUD operations.
2. Create a new project in ASP.NET MVC 5. Select WebAPI while
Retrieving data from Single table:
// Getting db connection.
$db = JFactory::getDbo();
// Create a new query object.
$query = $db->getQuery(true);
$query->select('*');
$query->from($db->quoteName('#__tablename')); // table name withou
No separate method is provided to do search in Parse document. Following code can be used to search a column .
PFQuery *query = [PFUser query];
[query whereKey:@"username" hasPrefix:searchText.lowercaseString];
[query whereKey:@"objectId" n
Suppose you have response somewhat like this:
var response = '{"result":true,"total-count":1}';
var getValues = JSON.parse(response);
document.write(getValues.result + ", " + getValues.total-count;
You can simple use JSON.parse() method to get the
"Getting incorrect results while using ToString("dd/mm/yyyy") "
In this article I am sharing one of the issue I got stuck in.
Please go through the following code :
string date = "30,jun,2015";
DateTime dt = Convert.ToDat
