- Fórum WMO
- → Viewing Profile: Posts: Marcelo-M4
Community Stats
- Group Usuários
- Active Posts 10
- Profile Views 575
- Member Title Novato no fórum
- Age Age Unknown
- Birthday Birthday Unknown
-
Sexo
Não informado
User Tools
Friends
Marcelo-M4 hasn't added any friends yet.
Latest Visitors
-
Guest
04/11/2007, 05:55
Posts I've Made
In Topic: Layout Montando
01/02/2006, 13:00
Dá uma pesquisada, tem muita coisa sobre como exportar arquivo do Photoshop p/ o DW.
Tbm acho que vc poderia usar fatias maiores, fazer o menu de forma diferente.
Estude um pouco mais, o principal vai ser diminuir a resolução de cada imagem e organizar para não ter tantas imagens carregando.
In Topic: Login - De Novo
24/01/2006, 15:51
Achei um sistema nos scripts prontos aqui do fórum que me deu uma luz.... é mais ou menos como vc fez aí.
Brigado ae pela força.....
In Topic: Página De Edição Com Problemas
06/01/2006, 13:27
MM_editCmd.Execute();
o Código completo é:
<%
// *** Update Record: construct a sql update statement and execute it
if (String(Request("MM_update")) != "undefined" &&
String(Request("MM_recordId")) != "undefined") {
// create the sql update statement
MM_editQuery = "update " + MM_editTable + " set ";
for (var i=0; i+1 < MM_fields.length; i+=2) {
var formVal = MM_fields[i+1];
var MM_typesArray = MM_columns[i+1].split(",");
var delim = (MM_typesArray[0] != "none") ? MM_typesArray[0] : "";
var altVal = (MM_typesArray[1] != "none") ? MM_typesArray[1] : "";
var emptyVal = (MM_typesArray[2] != "none") ? MM_typesArray[2] : "";
if (formVal == "" || formVal == "undefined") {
formVal = emptyVal;
} else {
if (altVal != "") {
formVal = altVal;
} else if (delim == "'") { // escape quotes
formVal = "'" + formVal.replace(/'/g,"''") + "'";
} else {
formVal = delim + formVal + delim;
}
}
MM_editQuery += ((i != 0) ? "," : "") + MM_columns[i] + " = " + formVal;
}
MM_editQuery += " where " + MM_editColumn + " = " + MM_recordId;
if (!MM_abortEdit) {
// execute the update
var MM_editCmd = Server.CreateObject('ADODB.Command');
MM_editCmd.ActiveConnection = MM_editConnection;
MM_editCmd.CommandText = MM_editQuery;
MM_editCmd.Execute();
MM_editCmd.ActiveConnection.Close();
if (MM_editRedirectUrl) {
Response.Redirect(MM_editRedirectUrl);
}
}
}
%>
In Topic: Dois Tipos De Comportamento Mouse Over
06/01/2006, 09:47
Agora apareçeu um problema inesperado, quando coloco o link para o usar o .texto1 a frase fica em azul ao invés de preto.
segue o meu código:
Onde em estilo_1_2006.css coloquei a CSS com as instruções iguais as suas<link rel="stylesheet" href="estilo_1_2006.css" type="text/css" />
<script type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
<style type="text/css">
<!--
a:link,a:visited,a:hover,a:active{text-decoration: none;}
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
body,td,th {
font-family: Trebuchet MS;
font-size: 11px;
}
.style1 {color: #000000}
-->
</style>
Segue abaixo:
.texto1 {
font-family: Trebuchet MS;
color:#000000;
font-size: 11pt;
}
a.texto1:hover{color: #999999;text-decoration:underline;}
.texto2 {
font-family: Verdana;
color:#ffffff;
font-size: 10pt;
font-style: italic;
font-wieght: bold;
}
a.texto2:hover{color: #CCCCCC ;text-decoration:underline}
.texto3 {
font-family: "Trebuchet MS";
color:#FFFFFF;
font-size:10px
}
a.texto3:hover{color: #CCCCCC ;text-decoration:underline}
Não entendi essa rs... dá um help ae
In Topic: Dois Tipos De Comportamento Mouse Over
06/01/2006, 09:07
Eu passei a tarde ontem lá no majour, estudando e tentando solucionar essa parada rs.
Valeu mesmo, tava indo nessa direção que vc apontou, mas ainda não tinha sacado como diferenciar os "a:" valeu de novo.
- Fórum WMO
- → Viewing Profile: Posts: Marcelo-M4
- Privacy Policy
- Regras ·