Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
~3K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for Mahesh1671

create or replace procedure CheckLogin(u_name in varchar2, u_pwd in varchar2,is_admin in number) is uname varchar2(30); upwd varchar2(30); begin if (is_admin = 0) then select user_name,password into uname,upwd from cms_users_login where user_name = u_name and password = u_pwd; else select admin_name,password into uname,upwd from cms_admin_login where admin_name = u_name and password …

Member Avatar for diafol
0
229
Member Avatar for shankbond

i'm using a .NET webservice, which sends some data, nothing complex: its just about firing two numbers to the webservice and receiving the values. Nothing complex, no SSL/HTTPS, nothing. Just a damn simple webservice. So, in FireFox everything works fine. But, when users with IE are trying to get the …

Member Avatar for surenkumar
0
148
Member Avatar for softheart

I was just going through one of my previous project and saw some code to disable the LinkButton, HyperLink and ImageButton; after going through it I remembered the issues we had faced with different browsers trying to disable these controls(with proper functionality, styling etc.). Hope posting these functions will help …

Member Avatar for surenkumar
0
3K

The End.