Web
Analytics
Blog | Angular | ASP.NET Tutorials

For Consultation : +91 9887575540

Stay Connected :

pipes in angular 4 -Part-2

What is it? 1.A pipe is to format the value of an expression displayed in the view. 2.The framework comes with multiple predefined pipes, such as date, currency, lowercase, uppercase, and others. 3.Syntax: {{expression | pipeName:inputParam1}} 4.If the pipe takes...

read more

pipes in angular 4

What is Angular 4 pipes: 1.A pipe is to format the value of an expression displayed in the view. 2.The framework comes with multiple predefined pipes, such as date, currency, lowercase, uppercase, and others. 3.Syntax: {{expression | pipeName:inputParam1}} 4.If the...

read more

angular 4 services with example

When we write the angular source code we usually need some data functions that would be shared across different components in an application. In that condition, we have to write same function code in different components that don't make sense. In this scenario, we can...

read more

functions in python

functions in python Function definition There are some simple rules to define a function in Python. They are as follows: Use the def keyword followed by function name with parentheses () Any argument to the function must be placed within these parentheses () The code...

read more

Dictionary in Python

What is Dictionary a built-in data structure available in Python a dictionary is a sequence of key-value, or item, pairs separated by commas. Ex port = {22: "SSH", 23: "Telnet" , 53: "DNS", 80: "HTTP" } . In a list, values are indexed by the range of numbers, but in a...

read more

List in Python with example

What is List: a built-in data structure available in Python a list of comma-separated values (items) between square brackets. It can contain heterogeneous values such as integers, floats, strings, tuples, lists, and dictionaries. Python lists are mutable; yes, they...

read more

Python String Handling

Basics of Python Strings. A Python string is a sequence, which consists of zero or more characters. The string is an immutable data structure, which means they cannot be changed. String Function Len function: In order to find the length of the string. Ex len(string...

read more

radiobuttonfor in mvc example | entity framework

Example of RadioButtonfor helper with entity framework HtmlHelper class include two extension methods to generate a element in a razor view: RadioButton() and RadioButtonFor(). RadioButton() method Signature: MvcHtmlString RadioButton(string name, object value, bool...

read more

data caching in asp.net c# example

What is Caching Ø Caching provides a way of storing frequently accessed data and reusing that data. ØImprove performance of web application using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace...

read more

singleton design pattern asp.net C#

What is singleton pattern 1.A class Object having only one instance and able to perform all task. 2.This design pattern is considered as creational(object creation) design pattern. 3.No constructor parameters are allowed while creating an instance. How to implement...

read more

apache pig language introduction

PIG Introduction Big is an Apache open source project pig works on MapReduce and hdfs and the script that we will read write to perform data analysis is called pig Latin. PIG is capable to read data from local file system and hdfs and able to write output data on hdfs...

read more

hive udf example

Hive functions Command : SHOW FUNCTIONS  (to see all  in-built functions) To show Complete details of in-built function. Descibe function concat Calling Functions: Select  concat(fname,lname) as fullname from emp Functions Types 1. Standard Functions : round(),...

read more