
Search In
While working with the data whether its from external source or it is from the datasource which is local you need to do parsing for it.
The process of serialization of data and deserialization of data is totally based on it.
In .Net applications, we have a standard way of specifying the SMTP setting in configuration file called web.config in web apps and app.config in other apps. We can define the settings needed for SMTP setup in these configuration files and then read
Hide $_GET variables using encryption
Hello friends, I am writing this blog which will let you know how to hide variables using encryption. I have created activation url, though which users will activate their account by clicking on it. So, I want t
Controls in ASP.NET are used to perform some action over based on some condition.
For ex : if user clicks button a message gets dispalyed.
ASP.NET uses five types of web controls, which are:
HTML controls
HTML Server controls
A
Prototype Model is the the very famous model in the software development model. The main concept here is that in place of freezing the needs or requirements ahead the coding or designing can carry on, a temporary prototype is made to comprehend the r
Drupal 6, Fatal error: Cannot redeclare class view in /var/www/html/mysite/profiles/drupal_commons/modules/contrib/views/includes/view.inc on line 19
I had a working website in Drupal 6 and with PHP 5.3.5. But after updating my PHP version to latest
One can easily change RectTransform right,left,top and bottom value using script in this way :-
object.GetComponent<RectTransform> ().offsetMin = new Vector2 (0,-1);//left-bottom
here "0" indicates Left value and "-1" ind
MVC is Model-View-Controller architecture designed for web development. It has three main parts:
In angular the way we organize things is different from the others in javascript.
Model: Model contains all the information that is responsible for main
A unanimous definition of a scope in rails can be termed as a succinct way of creating database queries. We define a scope in a Model class in the purview of MVC architecture.
It's syntax goes like: scope(name, body, &block) .
To give
Sometimes to improve the performance of application we need to schedule some slow tasks into background. That is where Workers comes in the picture.So intead of executing slow tasks during the HTTP request execute them into background.
There are many
