Verbatim Literals in ASP.Net and C#
Have you ever come up with standard where you wanted to access a path in a program. Lets just say : d:\binoy\jpeg\website\ If I want…
Parse vs. TryParse | Difference between Parse and TryParse
Parse vs. TryParse Parse TryParse Parse is used to convert data from string to other data type. It always expects a string to be passed. Parse throws an exception if…
Difference between Implicit Conversion and Explicit Conversion | Implicit Conversion vs. Explicit Conversion
Implicit Conversion Explicit Conversion Implicit Conversion is done automatically. Explicit Conversion is done programatically. In Implicit conversion, no data loss take place during the data conversion. In explicit conversion, data…
PHP FILE UPLOAD | FILE UPLOADING IN PHP
In today’s session we will see how to upload file in PHP. Using HTML form and PHP script, you can allow users to upload data on server. Initially we will…
Form Validation in PHP
In the last tutorial we have seen how to create FORM in HTML and display it in PHP file. But what if that data are not filled or not valid…
Form handling using PHP | PHP Forms
Using PHP you can respond or process the data to be submitted by HTML form information will be gathered by HTML form and further processed by PHP, thus you can…
HTML and PHP code On a Single Page
In one example we saw that using PHP you can respond or process the data to be submitted by HTML form information will be gathered by HTML form and further…
Android L | Android’s Next Version
Nowadays you may hardly find a person who do not know about Android and Android phones. This popularity does not stop here, every day the figures of Android users are…
ANDROID SILVER
We all are familiar with the outstanding response which Android has received. Now, here comes Google’s new Android programme,named ‘Android Silver.’ Standards of Android Silver Google has worked with one…
How creating a configuration class speedup your c# web application ?
I was creating an application with n-tier design in mind. Actually this was just a conceptual n-tier, it would be more appropriate if I call it n-layered application as the…