J
|
Jane 4/14/2009 |
Hi, Response.Write rs("IDClient") |
R
|
Ricardo Web author 4/14/2009 |
ok good, but i need of each ID for use after in other "Code snippet inserted",then i need put each id in one variable Session for example, for use this Session in future. |
J
|
Jane 4/14/2009 |
Hi, |
R
|
Ricardo Web author 4/14/2009 |
Example : |
J
|
Jane 4/14/2009 |
Hi, |
J
|
Jane 4/15/2009 |
Unfortunately it's impossble to pass values to the custom events. select IDClientes, IDClientes as button, ... from TableName
if rs1("ativo") = true then strValue = "<a href=""Clientes_list.asp?clientecliente=" & strValue & """><img src=""imagens/icon_ativo.gif"" alt=""Click aqui para Desativar"" width=""18"" height=""18"" border=""0"" /></a>" else strValue = "<a href=""Clientes_list.asp?clientecliente=" & strValue & """><img src=""imagens/icon_inativo.gif"" alt=""Click aqui para Desativar"" width=""18"" height=""18"" border=""0"" /></a>" end if |
J
|
Jane 4/16/2009 |
Try to use this one: str = "select ativo from clientes where idclientes = " & strValue set rs1 = dbConnection.execute(str) if rs1("ativo") = true then str = "<a href=""Clientes_list.asp?clientecliente=" & strValue & """><img src=""images/icon_ativo.gif"" alt=""Click aqui para Desativar"" width=""18"" height=""18"" border=""0"" /></a>" else str = "<a href=""Clientes_list.asp?clientecliente=" & strValue & """><img src=""images/icon_inativo.gif"" alt=""Click aqui para Desativar"" width=""18"" height=""18"" border=""0"" /></a>" end if strValue = str |
J
|
Jane 4/17/2009 |
Ricardo, |