How to create VDF Web Applications: Difference between revisions
From DataFlex Wiki
Jump to navigationJump to search
mNo edit summary |
mNo edit summary |
||
Line 6: | Line 6: | ||
*[http://en.wikipedia.org/wiki/VBScript vbscript] | *[http://en.wikipedia.org/wiki/VBScript vbscript] | ||
*[http://en.wikipedia.org/wiki/JScript] | *[http://en.wikipedia.org/wiki/JScript jscript] (jscript is a microsofts version of [[Javascript]] ) | ||
typical use of ASP includes usage of serverside components. You can write these using Visual dataflex. | typical use of ASP includes usage of serverside components. You can write these using Visual dataflex. | ||
Line 23: | Line 23: | ||
*[[Javascript]] ( validate here: http://www.jslint.com/ ) | *[[Javascript]] ( validate here: http://www.jslint.com/ ) | ||
== quirksmode == | |||
Quirksmode.org offers valuable resources for web development: | Quirksmode.org offers valuable resources for web development: | ||
*[http://www.quirksmode.org/js/contents.html quirksmode javacript] | *[http://www.quirksmode.org/js/contents.html quirksmode javacript] |
Revision as of 10:51, 20 September 2008
How to create VDF Web Applications page under construction
asp pages are about creating HTML markup to interface serverside code . This means that asp is not a real programming language - it is about creating html.
to write asp "code" then you need to use a scripting language like:
- vbscript
- jscript (jscript is a microsofts version of Javascript )
typical use of ASP includes usage of serverside components. You can write these using Visual dataflex.
serverside
- Web Business Process (these things gets registered and you can access them in asp)
- Global.asa (this is where your code is stackup up. check the list of WBP's there)
clientside
NOTE: currently there are no direct support for editing these things in the Visual DataFlex Studio
- HTML ( validate here: [1] )
- Cascading Style Sheets ( validate here: http://jigsaw.w3.org/css-validator/ )
- Javascript ( validate here: http://www.jslint.com/ )
quirksmode
Quirksmode.org offers valuable resources for web development: