What is CMS
CMS means Content Management System. It is a web application that provide capabilities for multiple users on different levels to manage content, information & data of a website, internet application. Content Man...
As we know our most of the projects in Java is run using Tomacat application server. Sometimes we also need some web server like apache2 for other functionalities like wordpress integration.
In such situation our project need both of the server ...
Hi Friends,
Today I will tell you about how you can see CPU usage using c#.
For this, we will use System.Diagnostics;
The CPU Usage will include CPU usage(in %) and RAM usage(in MB)
I have written code in a thread and I am executing t...
Generally when a user requests a page and if it doesn't exist then the server will return a 404 not found error as an output on the user screen. This error/response code informs the search engine that the current page request do not...
Choosing an ideal Project Management tool is difficult. Some are offering Giant Charts, Real time communication others are offering Bug Tracking, Calendar, etc. I want to choose the most ideal tool which can perform the PM operations with ease an...
In magento in a module if you're required to create a admin panel tab in which you need to display Category Drop down field through system.xml file in your module, then lets see how we can do it.
1- In the etc folder of the modul...
Here in this blog I am going to explain about the JQuery CLONE WITH CHANGING ID, for doing this we have to know about the clone() method so this method used for performing a deep copy of the set identical elements, it is useful for moving copies ...
Hi Friends,
Today I will tell you about using the custom helper in mvc. We can create our own helper extension.We have multiple extensions as shown below in figure:-
As these above extensions are predefined. But we can define our own exte...
Hi. I am a fresher and a front-end developer.
I have just started to use AngularJS a while ago. And I find it a very powerful framework. It's all great! I am also used to jQuery like any other developer. I just want to know which works fas...
I am new in web development. I notice that in web url there are two typs url 'http' and 'https'. I dont know the deference of these two also when and why we should change it from http to https.
Any can can help me to understand t...
Hi Friends,
Today i will discuss you about MSMQ(Microsoft Message Queuing).
MSMQ is a message queing service where you send a message from one application and receive by another application.
The application are don't need to be in exec...
Cubic-bezier curve is alike a parametric curve which is used in computer graphics and many other related fields. In animation, Bezier curves are used to smoothen the cursor orbit within the user interface design. Cubic-bezier curve is defined by ...
As the business world continues to grow with regular advancements in latest technologies, new concerns are arising on the way business transactions can be done more efficiently. In that regard, businesses and individuals have known ...
The typeahead are very important input fields in web forms. The fundamental utilization of typeahead is to enhance the user experience by giving clues or a list of possible choices based in view of the text entered while filling...
Hi Friends,
Today I will tell you about using Code First approach using entity framework. There are some situations where you need to create the table(when it does not exist in the database). So to do this we will
use entity framework 6...
Overhauling yourself with the ever challenging and latest technologies resemble securing your future. There are without doubt odds of lacking behind on the off chance that you don't redesign yourself routinely. In industry drive...
Hello, Readers!
Here in this blog, we can see the power of css3, by using only CSS. This bouncing ball will give the effects of bounce and touches its shadow, this will be possible by using Keyframe and animation. We have here three main d...
Hi Friends,
Today i will talk about the exception we usually get while uploading a large size file in file uploader in asp.net. The exception we get is shown in below image
To get rid of this exception you need to configure the web.conf...
HI Friends,
Today i will specify you how we can access directories from a specific path in c# . Below code justify the functionality :-
try
{
DirectoryInfo directoryinfo = new DirectoryInfo(@"D:\Test");
...
Hi Friends,
Today i will tell you how to export data to excel from gridview in asp.net. For this firstly create a project in asp.net.Add a gridview control in aspx page from toolbox as shown below:
<html xmlns="http://www.w3....
Hi Friends,
Today i will tell you about how we can convert a list to array. We can use 2 methods to convert list to array
Method 1:
//Create a list object
List<string> objList = new List<string>();
...
Bootstrap typography is that feature with the help of which you can create headings, paragraphs, lists and other inline elements. It uses 14 pixel font-size, line-height 1.4 with default font family Helvetica Neue, Helvetica, ...
Hello readers, Today in my blog I will discuss about Angular JS which is basically a web application framework.
Introduction:-
It is a structural framework for creating dynamic web applications.
The Angular JS is an extended ...
1-Upload selected file.
<?php
move_uploaded_file($_FILES["file"]["tmp_name"],$target);//Upload file
?>
2- Copy uploaded file and place it again in same directory.
<?php
copy($target, $NewFileNameWithFullPath);//Copy...
I'm working on a project in which all incoming from one service center (may have multiple hotlines).
All messages will display in my app.
User can swipe to delete each message or multi-select messages to delete.
I can't delete th...
In this problem, you will compute how much food you need to purchase for a trip across the desert on
foot.
At your starting location, you can purchase food at the general store and you can collect an unlimited amount of free water. The dese...
Certain jobs require a specific set of skills in an individual. These skills not only make the job easier, but they also guarantee success. Accounting can be difficult for people who don’t necessarily have the knack for this s...
If our text contains some html content, then we have to use ng-bind-html directive in angular js, else our html content will not be parsed and will be rendered as it is.
Example:
If our text is
$scope.Val = "<span> Somethi...
The RelativeSource is a markup extension that is used in for binding purpose in following scenarios :
1) To bind a property of a given object to another property of the object itself
2) To bind a property of a object to another one ...
Many times we run in a condition that the whole text is taking to much of space, so we need to show data upto certain limit and end it to ...(3 dots).
Usually we write code to check the length of the string and then trimming it, angular ...
We can create themes using Theme Generator. Liferay Theme Generator is an easy to use command line tool to generate the themes. Liferay plugin SDK isn't required to create the liferay theme and it works well with liferay 6.2 and 7 and probabl...
Hey, I am new to JS and trying to integrate graphs in website. Currently I am using only jQuery library for my code logics, so what library should I use for graphs?
Any help would be appreciated.
In this article, we will see how to create Web API, hosting of Web API and how to use Web API in an application.
ASP.NET Web API is a framework that makes it easy to build HTTP services which can be easily accessible to man...
Compare is an attribute in MVC which is used to compare any of the two properties with one another. In the application, it can be used to compare emailId and password. If both the fields are not having the same value then this attribute will disp...
Named parameters:-
The concept of named parameters was introduced in C#4.0 and main purpose was to pass the parameter by name not the position. This features provide us the liberty to pass the par...
The concept of optional parameter was introduced in C#4.0. Optional parameters enables you to pass the only required parameters. Each optional parameter has its default value, if no value is passed for this default parameter then its default valu...
Hello Reader,
The following code is used to create a new Enterprise Project Type(EPT):
public void CreateEnterpriseProjectType(Guid eptGuid, string eptName, string eptDescription)
{
ProjectContext projectContext = new Projec...
What is HTTP Status Code
HTTP Status code are the three digit code starts from 100 to 500, it is generated by the server which indicates the status of the webpage or a web element a user is seeking for.
Types of HTTP Status Codes
...
In jQuery append() method is used to add particular content at the end of the each element.
In the below example, with the help of append method we will display the current text/content on hover of that.
HTML-
<h2>Hover...
Hi,
Today we will discuss how to post data to the MVC Controller through AngularJS.
To do so, you will need to inject '$http' as a dependency while defining your angularJS controller:
app.controller('Controller', ['$scope', '$h...
Hello Readers,
In today's post we will discuss about the how we can extract the part of a string in JavaScript. These methods make easy to deal with strings.
To extract the part of a string there are three methods wh...
CSS pseudo elements are used to style parts of an element without giving particular Id or class to them.
Uses of pseudo elements:-
Used to style or add effect to the first letter or first element from the list of elements.
With the hel...
Hi,
Today we will discuss how to define our custom date format for md-datepicker in angularJS.
1. You will need to install moment.js from nuget packages
2. Add reference of moment.min.js
<script src="~/Scripts/momen...
Social Media & its Benefits:
Social Media is the future for communication, marketing & business. It is a collection of internet based tools and platforms that enhance the information shared.
Social media can be used for a vari...
AutoMapper can be defined as an object to object mapping i.e mapping similar properties in one object of one type to another object of different type. It is a library which is being used to get rid of extra code that is used to map one objec...
HoloLens, an augmented reality head-mounted smartglasses made by Microsoft that runs the Windows Holographic platform under the Win 10 OS has been just released on October 12, 2016 and is ready for developers to pre-order in Australia, Ireland, F...
Two teams of three players square off in a simple arena in which each team has a goal. The object is to take the flag in the middle of the court and put it in the other team’s goal zone.
Scoring a goal earns one point and en...
Believe it or not, project management is actually quite easy. All you need to set a deadline, decide a budget limit and assign tasks to the right people. And the project gets completed. But, if truth be told, a majority of projects goes towards f...