Jump to content
Fórum Script Brasil
  • 0

Uso De Classes No Asp


Snork

Question

peguei um sistema que tem o seguente cod :

<%

Dim oLang

Set oLang = New Language

Class Language

'funcao if na mesma linha

Function Iif(Condition, Value1, Value2)

If Condition Then

Iif = Value1

Else

Iif = Value2

End If

End Function

End Class

%>

Não sei o que seria esse Class Language... alguém poderia me ajudar ...

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

peguei um sistema que tem o seguente cod :

<%

Dim oLang

Set oLang        = New Language

Class Language

    'funcao if na mesma linha

    Function Iif(Condition, Value1, Value2)

        If Condition Then

            Iif = Value1

        Else

            Iif = Value2

        End If

    End Function

End Class

%>

Não sei o que seria esse Class Language... alguém poderia me ajudar ...

cara, "Language" é o nome que o programador definiu para essa CLASSE.

Vou dividir o codigo em duas partes e comentá-lo para que você entenda-o melhor...

<%

'Criando variavel

Dim oLang

'Criando objeto para CLASSE Language

Set oLang = New Language

%>

<%

'Criando CLASSE Language

Class Language

'Criando função IiF para classe LAnguage

Function Iif(Condition, Value1, Value2)

If Condition Then

Iif = Value1

Else

Iif = Value2

End If

'Finalizando função

End Function

'Finalizando classe Language

End Class

%>

cara, pelo visto essa função executa uma determinada condição (definida na variavel Condition) e retorna, dependendo do resultado, ou a variavel Value1 ou a variavel Value2.

Ele apenas executa uma condição e retorna um valor... para utiliza-lo faça..

DIM obj

set obj = new Language

response.write obj.Iif(1==2,"um é igual a dois","um é diferente de dois")

Qualquer dúvida entre em cotato ok?!

Abraços Daniel

Retornando das cinzas

Link to comment
Share on other sites

  • 0

oi

Como criar Classes no ASP

Como criar classes 2

tem uns textos sobre classes.. da uma lida, pra entender.. acho que mais que isso não tem..

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
      652k
×
×
  • Create New...