
Search In
While working in MVC we use LINQ to make our task easier and to make the manipulations easier
First we will create the action for doing this task.
[HttpPost]
public JsonResult Remove(int id)
{
n
In writing the code in MVC we can use the LINQ Language Integrated Query then we use this query for interacting with the database that will make the manipulations easier and time efficient in terms of execution and in terms of programming .
&n
Partial View in MVC is used when we want to use section for the master or the main page again and again.
It is just like a user control that is used to display or get data in the view that we want.
So as a beginner, you first need t
BracketHighlighter is a very usefull utility when you are using sublime-text as the editor while writing code in your respective language.
Many of us use sublime-text as the editor because it is light-weighted & because of its simplicity.
 
To convert a byte array to hexadecimal string we use a following two methods:
Method 1:
In first method we use a BitConverter.ToString( Byte[] )
This method convert the define array of bytes to the hexadecimal string format.
Synta
In C#, many times we need to convert a byte array to string format. In this blog, we are going to illustrate how to convert the byte array to its corresponding string format by using BitConverter.ToString() method.
Syntax:
public static str
A faker gem is used to create the fake data for testing or demo purpose in rails application. It is Perl's Data::Faker library that generate different type (i.e. Address, color, code, commerce, company, date etc.) of fake data. We are generally u
Hello Readers,
Below blog shows the call of the model from one component to another component.
For Example - We have a two different components in Joomla :
>> comp1
comp1->model->m1
model: m1
comp1->controller->c
Dear Programmers,
Liferay 7 has been modularized to a great extend, so the most of the JSPs you might want to override are no longer in Liferay's core. Being modularized, Liferay 7 comes with a modular approach to override the core JSP.
In this Tutorial of iOS Beginners Video Tutorial Series, we will learn the following things:
a) Adding a UITabbarController
b) Setting icon and title to Tab bar items
c) Adding view controller to Tab bar controller
d) Rearranging/reordering of Tab b
