
Search In
Conditional Constructs - IF...ELSEIF..ELSE
This construct is used to evaluate some complex conditions and based on the results execute different set of statements.
The basic syntax is
IF <conditions> THEN
<op
If you would like to get your profile picture in facebook app. Please user the below code, you can download facebook.js from facebook SDK.
<script src="//code.jquery.com/jquery-latest.min.js"></script>
<script src="//connect.f
Hi Friends!
Often we need to loop through the controls (collection of TextBlocks in) to and find them by their types. We can find them in this way:-
object control= LayoutRoot.FindName(txtname.Text);
if (item is TextBox)
{
TextBox
A regular expression is a pattern that could be matched against an input text. Regular expression are used to allow inputs from the user and providing validations.
Regex Class is used for implementing regular expressions
Ex:
The following examp
In the below code layout I have created floting action button layout. Here I have used CoordinatorLayout, LinearLayout, TextView and FloatingActionButton. FloatingActionButton move left or right when we changes layout_anchorGravity. In this layout Fl
Android Marshmallow i.e. API level 23 divided the permissions into two type :-
Normal permissions those permissions which do not risk user privacy . If your app lists a normal permission in its manifest, the system grants the permission automatical
For performing transactions first you need to understand the use and things associated with it.
Transaction is a way to make operations done in such a manner so that only relevant sequence or logical things done on the client and se
Hello Reader's if your making the parent child relationship then this blog is very helpful to you. Here we are making parent child tree by using the Iteration functions. The output of this will a tree which showing the childs on branches and pare
While writing codes in your MVC code for fetching data or for any purpose you need to use the condition based operation several times.
One way is to use the if else condition for it which includes too many lines in your code.
&nbs
Ajax codes are used to communicate between web pages and the server without loading the page.
lets demonstrate a search through ajax call with php
<html>
<head>
<style>
span {
color: gre
