Solution HERE
IT SOLUTION (PHP, .NET)
05/06/2021
07/06/2015
http://javaconceptoftheday.com/differences-between-program-vs-process-vs-threads
Differences Between Program Vs Process vs Threads What are the differences between Program Vs Process vs Threads? operating system interview questions, program vs process, process vs threads in java. . .
07/06/2015
Simple Asp.net AJAX Example of update Textbox:-
Design page:- .aspx
UpdatePanel1
Outside UpdatePanel
UpdatePanel2
coding page:- .aspx.cs
protected void Button1_Click(object sender, EventArgs e)
{
TextBox1.Text = DateTime.Now.ToString();
TextBox2.Text = DateTime.Now.ToString();
TextBox3.Text = DateTime.Now.ToString();
}
protected void Button2_Click(object sender, EventArgs e)
{
TextBox1.Text = DateTime.Now.ToString();
TextBox2.Text = DateTime.Now.ToString();
TextBox3.Text = DateTime.Now.ToString();
}
protected void Button3_Click(object sender, EventArgs e)
{
TextBox1.Text = DateTime.Now.ToString();
TextBox2.Text = DateTime.Now.ToString();
TextBox3.Text = DateTime.Now.ToString();
UpdatePanel1.Update();
}
What will be output if you will compile and execute the
following c code?
int main(){
int a=10;
printf("%d %d %d",a,a++,++a);
return 0;
}
Many Php developer use a common login statement :-
$query = "SELECT * FROM users WHERE user = '{$_POST['username']}' AND password= '{$_POST['password']}'";
mysql_query($query);
But Don't use it ... There is a security threat ..
If any one use ' OR ''=' as password ,then he can login without knowing original username or Password ...
Because The query sent to MySQL:
SELECT * FROM users WHERE user='aidan' AND password='' OR ''=''
This would allow anyone to log in without a valid password.
Click here to claim your Sponsored Listing.
Category
Website
Address
Kolkata
22/02/2017