<% if session("user_type")="C" then callfrom=request("call") EID="4" submitted=0 '====================== a=ucase(trim(request("a"))) b=ucase(trim(request("b"))) c=trim(request("c")) d=trim(request("d")) e=trim(request("e")) f=trim(request("f")) g=request("g") h=request("h") i=request("i") j=request("j") k=request("k") l=request("l") m=request("m") n=request("n") o=request("o") '====================================== sql="select * from user_master u , customer_details cd where u.user_type='C' and u.Parent="&session("uid")&" and u.uid=cd.uid " set rs=conn.execute(sql) %>
<% header="Select Customer to Edit Super Users Details" %>
<%if not rs.eof then%> <%while not rs.eof %> <%rs.movenext wend %>
  Name
User Name
Email Id
Status
Login Access
 
 
<%=rs("username")%>
<%=rs("email_id")%>
<%if rs("status")="1" then%> Active <%else%> Non Active <%end if%>
<%if rs("login_access")="Y" then%> Yes <%elseif rs("login_access")="L" then%> Locked <%elseif rs("login_access")="N" then%> No <%end if%>
 
<%else 'back="Y"%> <%end if%>
<%else if session("uid")="" then response.redirect ("../home/login.asp") else response.redirect ("../home/no_access.asp") end if end if%>