<%@Language="VBScript"%> <%Option Explicit%> <%Response.buffer=true%> <% 'Programm Name : Login.asp 'Programmer Name : N.Saravanan 'Programm Date : 03/06/2006 'Table Used : AdminUser %> <% 'Form variables declaration Dim Userid Dim S_Validate,Sqlquery Dim RsUser,Sqlsave() Dim IsValidUser 'Initialize Variables Set RsUser=Server.CreateObject("ADODB.Recordset") S_Validate="" Call Validate_User() %> SVAM International, Inc.
Home | Case Studies | Login | Contact Us  

Login

  Home    Login

Login

This feature is restricted to the employees of SVAM International Inc. You will need to provide your Username and Password to log into this site.
Admin Login Employee Login

<%If Trim(S_Validate) = "N" then %> Incorrect username /password
<%Else%> Enter User Name Password
<%End If %>

User Name
Password
Click here to Check mail

Manage Projects

Corporate Chat (Currently Not Available)

Time Sheet

Ticket Tracking

If you do not remember your username/password, please contact sysadmin@svam.com
Services
  DMBI
  BPM
  ECDM
  Web Collaboration
  ADM
  Infrastructure Services
  System Integration
  Quality Assurance
  IT Staffing
   Discussion Forum
Mining content for early threat detection
Read|Discuss
Is Bing a true Google challenger?
Read|Discuss
Text Analysis: The Next Step in Search
Read|Discuss
Managing the Web 2.0 life cycle
Read|Discuss
Enterprise Social Networking & Collaboration
Read|Discuss
SharePoint: the backbone of your information
Read|Discuss
Copyright © 2009 Svam International, Inc. Privacy Policy | Terms of Use | Disclaimer | Sitemap
<% Function Validate_User() Dim EncryptedPwd,Password If Trim(Request.Form("hdnsubmit")) = "S" then Call ValidateUser(Request.Form("txtUsename"),Request.Form("txtpassword"),IsValidUser) If ( IsValidUser = 1) then S_Validate="Y" Session("Login") = Request.Form("txtUsename") Response.Write "" Response.End Else S_Validate="N" End if End if End Function %>