Dreamweaver: html zu asp
ingo
- sonstiges
hallo:
weiss jemand, ob es einen praktischen Weg bzw. Befehl in Dreamweaver gibt - wie eine html in asp faehiges
format bringen ..
will nicht unbedingt per hand vor jede zeile (..)
das Response.Write " einfuegen.
danke euch fuer jeden hinweis.
Hallo ingo,
will nicht unbedingt per hand vor jede zeile (..)
das Response.Write " einfuegen.
Musst du doch gar nicht. Lass das doch einfach so stehen, wie es jetzt ist, und umgebe das ganze mit Skriptbegrenzern.
Also z.B. statt
<table>
<tr>
<td>
...
</td>
</tr>
</table>
dann so:
' irgendwelcher ASP-Code
%>
<table>
<tr>
<td>
...
</td>
</tr>
</table>
<%
' Fortsetzung ASP-Code
Gruss,
Daniel
hallo daniel, vielen dank fuer deien hilfe..
eine kurze frage noch:
ich habe es so gemacht wie du sagtest.
nun will ich ausserhalb des asp blockes
asp variablen anzeigen..
zb:
' irgendwelcher ASP-Code
%>
<table>
<tr>
<form name=hallo action=" <% URL_FORML %> meth...
</tr>
</table>
<%
' Fortsetzung ASP-Code
Hi!
Du musst statt
<form name=hallo action=" <% URL_FORML %> meth...
<form name=hallo action="<%response.write(URL_FORML)%>" method= ...
oder kürzer
<form name=hallo action="<%=URL_FORML%>" method= ...
schreiben.
LG, piranja