Jump to content
Fórum Script Brasil
  • 0

2 Coisas Simplisimas


Guest asp fraco

Question

Guest asp fraco

galera como eu faço pa colocar a variavel do servidor(servervariable) em um input ?

isso estaria certo ?

--

dim variavel

<%

variavel=request.Severvariables("remote_ADDR")

response.write variavel

%>

--

ta dando erro...porque ?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

tente assim.

<% 
variavel=request.Severvariables("remote_ADDR")
response.write (variavel)
%>
ou mais aconselhavel

<% 
variavel=request.Severvariables("remote_ADDR")
%>
<%=variavel%>

Link to comment
Share on other sites

  • 0

puuuts ..

olha só

seu codigo:

<%

variavel=request.Severvariables("remote_ADDR")

response.write variavel

%>

codigo correto:

<%

variavel=request.Servervariables("remote_ADDR")

response.write variavel

%>

o correto é SeRver e não sever

ok?

ate mais!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...