1
The following piece of code is giving me trouble:
While not rsQuery.EOF
If vStrCurso <> rsQuery("SIGLA") Then
ind = ind & "<p></p>"
ind = ind & "<span><b><a href='"&vStrParametro7&"/Busca/"&rsQuery("ID_CURSO")&"/' target='blank'>"&rsQuery("SIGLA")&" - "&rsQuery("DESCR")&"</a></b></span><br/>"
ind = ind & "<span>- <a href='"&vStrParametro7&"/Busca/"&rsQuery("ID_CURSO")&"/'&#calendario target='blank'>"&rsQuery("DT_INICIO")&" à "&rsQuery("DT_FIM")&"</a></span>"
Else
ind = ind & "<br/><span>- <a href='"&vStrParametro7&"/Busca/"&rsQuery("ID_CURSO")&"/'&#calendario target='blank'>"&rsQuery("DT_INICIO")&" à "&rsQuery("DT_FIM")&"</a></span><br/>"
End If
Does not give an error message, just does not redirect. I believe there is something wrong with the bar and quotation marks, I have tried several times but without success. Something is wrong. NOTE: The page exists.
What is the error message?
– Math
No mistakes, just don’t redirect. I believe that there is something wrong with the bar and the quotes at the end before the "target", I have tried several times but without success. Something is wrong. NOTE: Page exists.
– AndreeH
@Andreeh better describe the functionality of this code, what should he do that is not doing? post a larger chunk of your code that allows us to run tests and so on.
– Paulo Roberto