Start ⇒ All Programs
⇒ Microsoft Visual Studio 2010 Express
⇒ Microsoft Visual Web Developer 2010 Express Edition
New Web Site...” in the section “Recent Projects:”
ASP.NET Web Site” and “Visual Basic” and
Web location: ⇒ File System ⇒ C:\course\260\ASP.NET\WebSite1 ,” to store your Web site.
|
|
; hello64.asm - Simple 64-bit Hello World for Windows
; Assemble: ml64 hello64.asm /link /subsystem:console /entry:main
includelib ucrt.lib
includelib legacy_stdio_definitions.lib
includelib msvcrt.lib
.data
msg db "Hello from 64-bit MASM!", 10, 0
.code
externdef printf:proc
externdef exit:proc
main proc
sub rsp, 40 ; Shadow space (32 bytes) + alignment
lea rcx, msg ; First argument: address of the string
call printf ; Call the C library printf function
add rsp, 40 ; Restore stack pointer
xor ecx, ecx ; Exit code 0
call exit
main endp
end
|
.aspx files, check the ASP.NET Quickstart Tutorial.
Debug ⇒ Build Web Site
Debug ⇒ Start Debugging
https://localhost:60283/WebSite1/Default.aspxFor grading, you have to submit a CD containing the Website and allow the instructor to execute it on his machine.