default.aspx
files are saved with the Page Async
property set to true
(e.g. <%@ Page Async="true" ... %>
). This allows asynchronous ASP.NET web form development (see the Using Asynchronous Methods in ASP.NET 4.5 Microsoft article for more information).runat
server tag (e.g. <script runat="server"
) and JavaScript script tag (e.g. <script jseditor="true">
) directly in the generated default.aspx
file on the server (usually located in the \wfapps\webforms[PROCESSNAME]\V[VERSION]
folder) using Visual Studio Professional or Visual Studio Code. default.aspx
file in order to keep the form's HTML script tags (FORM_HTML
) up to date. This is mandatory before you can export the XPDL process definition for deployment on another server.Page_Load
event's ScriptManager
object. For example:Ctrl+S
to save)//
before the selected line(s)//
before the selected line(s)px
, pt
, in
, cm
, mm
, pc
, em
, ex
, %
), e.g. 720px
px
, pt
, in
, cm
, mm
, pc
, em
, ex
, %
), e.g. 38px
px
, pt
, in
, cm
, mm
, pc
, em
, ex
, %
), e.g. 720px
px
, pt
, in
, cm
, mm
, pc
, em
, ex
, %
), e.g. 150px
<script>
, <meta>
, <link>
, and <style>
tags are supported. When you enter a tag, the free text editor automatically inserts its closing tag.<link rel="stylesheet" type="text/css" href="mystyle.css" />
<style type="text/css">
body {background-color:yellow}
p {color:blue}
</style>
<meta name="description" content="my content" />
<script type="text/javascript">
alert("Hello World!");
</script>
<script type="text/javascript" src="myscript.js">
</script>
Ctrl+Space
to display a drop-down menu that lists the available variables and keywords.