
Search In
Restoring backup from sql script through Postgre console is just a 2 step process.They are as follows:
Step 1: psql -h hostname -U username database_name
Step 2: \i filename.sql
How to implement google map
Code this on your .aspx page
<body onload="initialize()">
<form id="form1" runat="server">
<div id="gmap" style="width:100%; height:100%"></div>
</form></body>
Use this javascr
Copy only columns from a datatable
Use 'clone' method to create a datatable with same structure
dtCopyColumns= dt.Clone();
This will copy only columns from dt to dtCopyColumns
Copy columns and rows from a datatable
dtCopy = dt.Copy();
Hello guys,
It's my first post and in this post I am showing you, how can we customize checkbox and radio input with the help of css. Yes, now we can customize form elements with css. It's not complicated but little tricky.
So lets start with HTM
Sample Code that works for following module
1- Send email, one can use attachments as well.
2- Capture image using SquareCam Controller.
3- Upload image to server.
We have an associative array where its values are all Boolean and if we search for a string, we got true.
Let’s see an example.
<?php
$array = array(
'count' => 1,
'references' => 0,
'ghosts' => 1
);
var_dump(in_a
Its sometimes very tedious and time consuming to search for a product or a partner or anything by typing and still not getting the desired result and then you have to wait for the Search More wizard.
To compensate this, I have got a solution, just g
What is Lambda Expression ?
Lambda expression is an inline delegate introduced with C # 3.0 language. It is an easy way to represent an anonymous method. Lambda is used to write anonymous functions which does not take parameter and which does not re
If you want to show a sheet of options where users can choose from, for IOS application, to make this possible please follow the instructions below:-
Install the plugin- ActionSheet: a Cordova plugin from the below link:
https://github.com/EddyVerbr
Exploratory Testing:-
Exploratory testing is about exploring, finding out about the software, what it does, what it doesn’t do, what works and what doesn’t work.
The plainest definition of exploratory testing is test design and test execu
