thanx all
i wrote this in page_load func
if(!IsPostBack)
{
DeleteUserBtn.Attributes.Add("onclick", "return confirm('Are you sure
you want to Delete?')");
}
i tried this and it works....
I try to create a simple OOP PHP that shows an error:
class_lib.php
<?php
class person {
var $name;
function __constructor($person_name){
echo "Initialize class";
}
function set_name($new_name){
$this->name($new_name);
} ...