
Search In
Stored procedure is used to store a SET of SQL statements in database as a compiled form which can be used by different programs. It performs a special task like inserting data into database, deleting records from database or updating an existing rec
C# consists a ListView control which contains a list of items and the items can have different forms either number,text or images.
To add columns in listview we can use:
ListView.Columns.Add("EmpName", 1000);
To understand it better,we will c
Ruby provides us three methods to interact with Array, Hashes or Objects.
Length
Size
Count
Lets takes a simple array to explain the difference between these methods
array1 = [A, B, C, D, E]
array1.length
arr
As we all know,Ruby Blocks and Ruby Methods work in tandem as clearly elucidated by the below example:
def demo_method
yield "hello"
end
demo_method { |block_argument| "#{block_argument}!! our first ruby blog"}
here, the yield keyword w
Few days ago, I was creating an ASP.NET Web API by generating Entity Framework scaffolding API controller. There were simply two tables in the database Product and Title. In the edmx file, the auto-generated classes were as follows:
public p
I have this page header and i need to make responsive so it can fit in tablet and smart phones and i need to direct form right to left and how can i use pure javascript to achive that (no Jquery needed)
<!DOCTYPE html>
<!--[
According to a survey on emarketer, “Mcommerce sales in the US will increase to total $146.26 billion in year 2018.”
A service provider mobile application concept is a new innovative way to enlarge your expertise for the
Angular JS is an open source framework for building web applications. Tech giant Google maintains it. Coders face many issues while developing and testing any code. It resorts many of the challenges which the coders may face. AngularJS mixes HTML cod
WordPress vs: Magento: Applications Compared
Anyone wishing to open a business in the global network needs suitable e-commerce software to operate. There are several web applications that business owners use. Online shop owners often choose Magento
In MVC for performing various operations we can use the predefined templates for the execution of the program easy.
For the basic operation like binding the gridview we can use the list template for it.
I h
