02. november 2001 - 14:20Der er
18 kommentarer og 1 løsning
ASP på intranet
Hejsa
Jeg har lige et problem og er der nogle der ved om man kan køre asp på Swwwing.De benytter php og js scribt men jeg kan ikke se mint asp script den viser kun html koden og ikke de beregninger der er lavet in asp? Håber at i kan hjælpe
hmm....den skulle umiddelbart kunne køre asp filer, direkte efter installation....asp er trods alt microsofts svar på php ;).... Hvordan kunne resultatet af en default.asp se ud? ... er det bare <HTML>something</HTML> eller hvad?
<% @LANGUAGE = VBScript %> <% \' Listing 4.5 Server Time Option Explicit Dim nI, arrLCID arrLCID=Array(3081,4105,2057,1033,1036,1031,1041,1049) %> <HTML> <BODY> This example demonstrated the effect of assigning a value to the Session.LCID property.<BR><BR> <TABLE> <TR> <TH> LCID </TH> <TH WIDTH=\"50\"></TH> <TH> Date and Time </TH> </TR> <% For nI = 0 to UBound(arrLCID) Session.LCID = arrLCID(nI) %> <TR> <TD> <%= arrLCID(nI) %> </TD> <TD></TD> <TD> <%= Now %> </TD> </TR> <% Next %> </TABLE> </BODY> </HTML>
<% @LANGUAGE = VBScript %> <% \' Listing 4.5 Server Time Option Explicit Dim nI, arrLCID arrLCID=Array(3081,4105,2057,1033,1036,1031,1041,1049) %> <HTML> <BODY> This example demonstrated the effect of assigning a value to the Session.LCID property.<BR><BR> <TABLE> <TR> <TH> LCID </TH> <TH WIDTH=\"50\"></TH> <TH> Date and Time </TH> </TR> <% For nI = 0 to UBound(arrLCID) Session.LCID = arrLCID(nI) %> <TR> <TD> <%= arrLCID(nI) %> </TD> <TD></TD> <TD> <%= Now %> </TD> </TR> <% Next %> </TABLE> </BODY> </HTML>
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.