<%
Option Explicit
'Tutaj jest kod czcy si z baz danych
If Instr(RS("FullName"), " ") then
  Response.Write Mid(RS("FullName"), Instr(RS("FullName"), " ") + 1)
Else
  Response.Write RS("FullName")
End If
%>
