Make User Page [message #398883] |
Sun, 19 April 2009 01:05 |
sonia.ali
Messages: 40 Registered: April 2009 Location: Pakistan
|
Member |
|
|
Hello Friends,
Hope All of will be fine.
Hope you will be fine and Enjoying holiday.
I wana make a page , Which have id user page. Put the User Id and password then open my developing page.
regrads
Sonia Ali
|
|
|
|
|
Re: Make User Page [message #399114 is a reply to message #398883] |
Mon, 20 April 2009 13:30 |
shahzaib_4vip@hotmail.com
Messages: 410 Registered: December 2008 Location: karachi
|
Senior Member |
|
|
select 2 text box 1 is user_id and other is password
then create 2 button ok and cancel
write trigger in ok button
if
user_id = 'Shahzaib' or 'SHAHZAIB' then
if
Password = '123456' then
go_block('emp');
else
message ('Password is incorrect');
message ('Password is incorrect');
end if;
else
Message ('Invalid User Id');
Message ('Invalid User Id');
end if;
Hope this will solve your problem
Shahzaib Ismail
|
|
|