
Search In
SQL SERVER: Copy structure of an existing table without data into new table
Create a table named "tblStudents" in database and insert some dummy data into it.
CREATE TABLE tblStudents
(
StudentId INT NOT NULL IDENTITY
Previous Git Blogs
Intialize git repostiory
First Commit
Two tree architecture and Three tree architecture
Best basic practices for writing commit messages
Viewing the commit logs
Git Basic WorkFlow
What is HEAD pointer in GIT
Git provides th
Hello Readers,
Hope you are doing good today.
Today in My blog, I am going to explain how you can upload multiple files using AngularJS and PHP.
First Create an index.html page and put required library file in <head></head> secti
Hello Readers if you want to upload files (images or music) then now Angular JS offers you a way lot more esier. Using angular give user a light and fast interface which is very useful for low internet speed connections.
Lets see the working example
If you want to create multiple elements with dynamic id on click of button or an HTML element see below program for reference.
/* The following html/jquery snippet will create multiple input boxes with dynamic id on clicking an individual element. *
It is very common that the Android's Edit text needs to clear all filled data in one hit, rather than clearing every single text using keyboard's 'X' button.
It is a good practice that enable user to clear all the text using Edit Text drawable.
pu
The below code snippet depicts can populate “To Price” in second dropdownlist all greater than “From Price” that we selected in the From Price dropdownlist.
Let us create an HTML file, say selectamount.html
Here we will assi
Many a times we need to authenticate our users through social media such as facebook, twitter and google+.
Today I will be discussing how to login to the system using Google+ credentials without using any sdk but through javascript.
Using the below
In javascript,There are variables in which we can store the values. We declare a variable with the var keyword:
var myVariable;
The variables have different data types in javascript.
VariableExplanationExample
StringIt takes "A string of text".
TempData in asp.net mvc
TempData is a dictionary object derived from TempDataDictionary.
TempData provide communication between Controller action and it's corresponding view by tranfering and maintaing data.
The tempdata is retained not only
