Avatar billede -42- Nybegynder
04. juli 2003 - 14:24 Der er 12 kommentarer og
1 løsning

Download virker ikke

Jeg kan ikke få min save image funktion til at virke?

www.cbc.dk/GACphoto


The script:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Photo Album</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../styles.css">
</head>
<script language="JavaScript">
function saveImageAs (imgOrURL) {
    if (typeof imgOrURL == 'object')
      imgOrURL = imgOrURL.src;
    window.win = open (imgOrURL);
    setTimeout('win.document.execCommand("SaveAs")', 500);
  }
</script>

<body>
<%

' This code assumes you are using .jpg images for both the thumbnails and fullsize pictures. If you are
' using .gif then you will have to change it everywhere in the code.
' This also assumes that your thumbnails share the same name as your original with a common ending.
'  e.g. Faimily-01.jpg - would be the thumbnail
'      Family.jpg    - would be the large image

'Declare variables
dim thumbIdentifier    'The unique string that identifies a thumbnail vs. the big image
dim thumbsPerPage      'Number of thumbnails per page
dim thumbsPerRow      'Number of thumbnails per row
dim img                'The image to display (not the thumbnail but the big one)
dim page              'what page you are on
dim first              'first image of the set to display, a set being image 0-49 based upon number per page
dim last              'last image of the set for the array
dim lastDisplay        'last image of the set to display on the 'Images 20 - 40'
dim thisPageURL        'This is the name of this page eg. album.asp. If you re-name it links in page will update

thumbsPerPage = 200              ' Number of thumbnails to display on the page
thumbIdentifier = "-01.jpg"      ' This is the common string ending for all thumbnail images.
thumbsPerRow = 3                ' Number of thumbnails to display per row - surprised?
thisPageURL = Request.ServerVariables("test.asp") 'This gets the name of this page eg. album.asp
page = request.queryString("page") 'This is the page you are on, used for paging
if page = "" then page = 1        'If no page # exists, set to 1
img = Request.querystring("img")  'Large image to display if they clicked a thumbnail
if img = "" then                  'If there is no image on URL, show the thumbnail page

' Determine which image to start / end at based upon paging and thumbsPerPage
first = ((page-1) * thumbsPerPage)
last = (page * thumbsPerPage)-1 'We do minus 1 here since we are using an array... array starts at 0 vs 1

  ' get the current folder location
    strPathInfo = Request.ServerVariables("SCRIPT_NAME")
    strPhysicalPath = Server.MapPath(strPathInfo)
    set objFSO = CreateObject("Scripting.FileSystemObject")
    set objFile = objFSO.GetFile(strPhysicalPath)
    set objFolder = objFile.ParentFolder
    set objFolderContents = objFolder.Files
   
  ' Count total number of thumbnails
  totalImages = 0
  For each objFileItem In objFolderContents
      if inStr(LCase(objFileItem.Name),thumbIdentifier) then
          totalImages = totalImages + 1
      end if
  next
 
'Limit last to totalImages so array does not go out of range.
if last > totalImages then last = totalImages

'Array starts at 0 vs. 1 so we need to offset this by 1 exception last image can'be be > than total # of images
lastDisplay = last + 1
if lastDisplay > totalImages then lastDisplay = totalImages
 
  ' Create an array to put all the images in so that we can do paging
  dim arrayOfThumbs()
  ReDim arrayOfThumbs(totalImages)
 
  dim i
  i = 0
' Populate the array with the images
For each objFileItem In objFolderContents
                ' only display the thumbnails - the images that have the ending defined in the thumbIdentifier variable at top of page
                if inStr(LCase(objFileItem.Name),thumbIdentifier) then
          'Isolate the image name so that we can create a link to the large version. This strips off the ending e.g. -01.jpg
                    image = split(objFileItem.Name, thumbIdentifier)
        ' Populate array
                arrayOfThumbs(i)= "<td nowrap valign='bottom' align='left'><a href='gallery.asp?img=" & image(0) & ".jpg'>" & vbCrLf & _
                                  "<img src='" & objFileItem.Name & "' hspace='2' border='0'></a><br><A HREF='java script: void 0' ONCLICK='saveImageAs(document.& image(0) &); return false'>save image</A></td><td width='20'></td>" & vbCrLf
        i = i + 1
        end if
next


' Create page links if more than 1 page is needed
dim paging
if (thumbsPerPage < totalImages) then
' Assing all the page numbers to the paging string because we are going to use on top and bottom of page
paging = "Page: <b>"
  k = 1
  Do
    paging = paging + "<a href='" & thisPageURL & "?page=" & k & "'>" & k & "</a>" & vbCrLf
    k = k + 1
  loop until (k * thumbsPerPage) >= totalImages
  paging = paging + "<a href='" & thisPageURL & "?page=" & k & "'>" & k & "</a></b>"    'One more becase the logic cuts the last one off
end if
%>

<!-- This is where the HTML of the page starts :::: Page Title -->




<table align="center">
  <tr>
<%
' Loop through the array and display images
  for j =  first to last
    response.write(arrayOfThumbs(j))
    if (j+1) Mod thumbsPerRow = 0 then response.Write(vbCrLf & "</tr><tr>" & vbCrLf) 'Create a new row based on thumbsPer row
  next
%>
  </tr>
</table>
<!-- Write the paging piece at the bottom
<p align="center">
<%=paging%> &nbsp;&nbsp; Images <%=first+1%> - <%=lastDisplay%> of <%=totalImages%>
</p> -->

<%
'Display the big image Page
else
%>
<!-- Else show the selected picture.  -->


<script language='javascript'>
  window.open('<%=img%>')
  history.back() 
  </script>
 
<% end if %>
</body>
</html>
Avatar billede tuctoh Nybegynder
04. juli 2003 - 15:22 #1
tjaa... måske sådan her?






<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<script language='javascript'>
  function saveImageAs (imgOrURL) {
    if (typeof imgOrURL == 'object')
      imgOrURL = imgOrURL.src;
    window.win = open (imgOrURL);
    setTimeout('win.document.execCommand("SaveAs")', 500);
  }
</script>
<title>Photo Album</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head>
<body>
<%

' This code assumes you are using .jpg images for both the thumbnails and fullsize pictures. If you are
' using .gif then you will have to change it everywhere in the code.
' This also assumes that your thumbnails share the same name as your original with a common ending.
'  e.g. Faimily-01.jpg - would be the thumbnail
'      Family.jpg    - would be the large image

'Declare variables
dim thumbIdentifier    'The unique string that identifies a thumbnail vs. the big image
dim thumbsPerPage      'Number of thumbnails per page
dim thumbsPerRow      'Number of thumbnails per row
dim img                'The image to display (not the thumbnail but the big one)
dim page              'what page you are on
dim first              'first image of the set to display, a set being image 0-49 based upon number per page
dim last              'last image of the set for the array
dim lastDisplay        'last image of the set to display on the 'Images 20 - 40'
dim thisPageURL        'This is the name of this page eg. album.asp. If you re-name it links in page will update

thumbsPerPage = 200              ' Number of thumbnails to display on the page
thumbIdentifier = "-01.jpg"      ' This is the common string ending for all thumbnail images.
thumbsPerRow = 3                ' Number of thumbnails to display per row - surprised?
thisPageURL = Request.ServerVariables("test.asp") 'This gets the name of this page eg. album.asp
page = request.queryString("page") 'This is the page you are on, used for paging
if page = "" then page = 1        'If no page # exists, set to 1
img = Request.querystring("img")  'Large image to display if they clicked a thumbnail
if img = "" then                  'If there is no image on URL, show the thumbnail page

' Determine which image to start / end at based upon paging and thumbsPerPage
first = ((page-1) * thumbsPerPage)
last = (page * thumbsPerPage)-1 'We do minus 1 here since we are using an array... array starts at 0 vs 1

  ' get the current folder location
    strPathInfo = Request.ServerVariables("SCRIPT_NAME")
    strPhysicalPath = Server.MapPath(strPathInfo)
    set objFSO = CreateObject("Scripting.FileSystemObject")
    set objFile = objFSO.GetFile(strPhysicalPath)
    set objFolder = objFile.ParentFolder
    set objFolderContents = objFolder.Files
   
  ' Count total number of thumbnails
  totalImages = 0
  For each objFileItem In objFolderContents
      if inStr(LCase(objFileItem.Name),thumbIdentifier) then
          totalImages = totalImages + 1
      end if
  next
 
'Limit last to totalImages so array does not go out of range.
if last > totalImages then last = totalImages

'Array starts at 0 vs. 1 so we need to offset this by 1 exception last image can'be be > than total # of images
lastDisplay = last + 1
if lastDisplay > totalImages then lastDisplay = totalImages
 
  ' Create an array to put all the images in so that we can do paging
  dim arrayOfThumbs()
  ReDim arrayOfThumbs(totalImages)
 
  dim i
  i = 0
' Populate the array with the images
For each objFileItem In objFolderContents
                ' only display the thumbnails - the images that have the ending defined in the thumbIdentifier variable at top of page
                if inStr(LCase(objFileItem.Name),thumbIdentifier) then
          'Isolate the image name so that we can create a link to the large version. This strips off the ending e.g. -01.jpg
                    image = split(objFileItem.Name, thumbIdentifier)
        ' Populate array
                arrayOfThumbs(i)= "<td nowrap valign='bottom' align='left'><a href='gallery.asp?img=" & image(0) & ".jpg'>" & vbCrLf & _
                                  "<img src='" & objFileItem.Name & "' hspace='2' border='0'NAME=""" & left(objFileItem.Name, len(objFileItem.Name)-4)  & """ ></a><br><A HREF=""java script: void(0)"" ONCLICK=""saveImageAs(document." & left(objFileItem.Name, len(objFileItem.Name)-4) & "); return false"" >Gem Billede</A><br><input type='checkbox' name='"&image(0) &"' id='"&image(0) &"' value='checkbox'>" &" Order CD</td><td width='20'></td>" & vbCrLf
        i = i + 1
        end if
next


' Create page links if more than 1 page is needed
dim paging
if (thumbsPerPage < totalImages) then
' Assing all the page numbers to the paging string because we are going to use on top and bottom of page
paging = "Page: <b>"
  k = 1
  Do
    paging = paging + "<a href='" & thisPageURL & "?page=" & k & "'>" & k & "</a>" & vbCrLf
    k = k + 1
  loop until (k * thumbsPerPage) >= totalImages
  paging = paging + "<a href='" & thisPageURL & "?page=" & k & "'>" & k & "</a></b>"    'One more becase the logic cuts the last one off
end if
%>

<!-- This is where the HTML of the page starts :::: Page Title -->




<table align="center">
  <tr>
<%
' Loop through the array and display images
  for j =  first to last
    response.write(arrayOfThumbs(j))
    if (j+1) Mod thumbsPerRow = 0 then response.Write(vbCrLf & "</tr><tr>" & vbCrLf) 'Create a new row based on thumbsPer row
  next
%>
  </tr>
</table>
<!-- Write the paging piece at the bottom
<p align="center">
<%=paging%> &nbsp;&nbsp; Images <%=first+1%> - <%=lastDisplay%> of <%=totalImages%>
</p> -->

<%
'Display the big image Page
else
%>
<!-- Else show the selected picture.  -->


<script language='javascript'>
  window.open('<%=img%>')
  history.back() 
  </script>
 
<% end if %>
</body>
</html>
Avatar billede -42- Nybegynder
04. juli 2003 - 15:25 #2
prøver
Avatar billede -42- Nybegynder
04. juli 2003 - 15:31 #3
Det ser desvære ikke ud til at virke... endnu!

http://www.cbc.dk/gacphoto
Avatar billede -42- Nybegynder
04. juli 2003 - 15:36 #4
men dialogboksen kommer da frem, men det er ikke det rigtige den prøver at hente ned
Avatar billede tuctoh Nybegynder
04. juli 2003 - 15:37 #5
sådan?


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Photo Album</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../styles.css">
</head>
<script language="JavaScript">
function saveImageAs (imgOrURL) {
    if (typeof imgOrURL == 'object')
      imgOrURL = imgOrURL.src;
    window.win = open (imgOrURL);
    setTimeout('win.document.execCommand("SaveAs")', 500);
  }
</script>

<body>
<%

' This code assumes you are using .jpg images for both the thumbnails and fullsize pictures. If you are
' using .gif then you will have to change it everywhere in the code.
' This also assumes that your thumbnails share the same name as your original with a common ending.
'  e.g. Faimily-01.jpg - would be the thumbnail
'      Family.jpg    - would be the large image

'Declare variables
dim thumbIdentifier    'The unique string that identifies a thumbnail vs. the big image
dim thumbsPerPage      'Number of thumbnails per page
dim thumbsPerRow      'Number of thumbnails per row
dim img                'The image to display (not the thumbnail but the big one)
dim page              'what page you are on
dim first              'first image of the set to display, a set being image 0-49 based upon number per page
dim last              'last image of the set for the array
dim lastDisplay        'last image of the set to display on the 'Images 20 - 40'
dim thisPageURL        'This is the name of this page eg. album.asp. If you re-name it links in page will update

thumbsPerPage = 200              ' Number of thumbnails to display on the page
thumbIdentifier = "-01.jpg" '    ' This is the common string ending for all thumbnail images.
thumbsPerRow = 3                ' Number of thumbnails to display per row - surprised?
thisPageURL = Request.ServerVariables("test.asp") 'This gets the name of this page eg. album.asp
page = request.queryString("page") 'This is the page you are on, used for paging
if page = "" then page = 1        'If no page # exists, set to 1
img = Request.querystring("img")  'Large image to display if they clicked a thumbnail
if img = "" then                  'If there is no image on URL, show the thumbnail page

' Determine which image to start / end at based upon paging and thumbsPerPage
first = ((page-1) * thumbsPerPage)
last = (page * thumbsPerPage)-1 'We do minus 1 here since we are using an array... array starts at 0 vs 1

  ' get the current folder location
    strPathInfo = Request.ServerVariables("SCRIPT_NAME")
    strPhysicalPath = Server.MapPath(strPathInfo)
    set objFSO = CreateObject("Scripting.FileSystemObject")
    set objFile = objFSO.GetFile(strPhysicalPath)
    set objFolder = objFile.ParentFolder
    set objFolderContents = objFolder.Files
   
  ' Count total number of thumbnails
  totalImages = 0
  For each objFileItem In objFolderContents
      if inStr(LCase(objFileItem.Name),thumbIdentifier) then
          totalImages = totalImages + 1
      end if
  next
 
'Limit last to totalImages so array does not go out of range.
if last > totalImages then last = totalImages

'Array starts at 0 vs. 1 so we need to offset this by 1 exception last image can'be be > than total # of images
lastDisplay = last + 1
if lastDisplay > totalImages then lastDisplay = totalImages
 
  ' Create an array to put all the images in so that we can do paging
  dim arrayOfThumbs()
  ReDim arrayOfThumbs(totalImages)
 
  dim i
  i = 0
' Populate the array with the images
For each objFileItem In objFolderContents
                ' only display the thumbnails - the images that have the ending defined in the thumbIdentifier variable at top of page
                if inStr(LCase(objFileItem.Name),thumbIdentifier) then
          'Isolate the image name so that we can create a link to the large version. This strips off the ending e.g. -01.jpg
                    image = split(objFileItem.Name, thumbIdentifier)
        ' Populate array
                arrayOfThumbs(i)= "<td nowrap valign='bottom' align='left'><a href='" & image(0) & ".jpg' target='_blank'>" & vbCrLf & _
                                  "<img src='" & objFileItem.Name & "' hspace='2' border='0' name='"& image(0) &"'></a><br><A HREF='java script: void 0' ONCLICK='saveImageAs(document."& image(0) &"); return false'>save image</A></td><td width='20'></td>" & vbCrLf
        i = i + 1
        end if
next


' Create page links if more than 1 page is needed
dim paging
if (thumbsPerPage < totalImages) then
' Assing all the page numbers to the paging string because we are going to use on top and bottom of page
paging = "Page: <b>"
  k = 1
  Do
    paging = paging + "<a href='" & thisPageURL & "?page=" & k & "'>" & k & "</a>" & vbCrLf
    k = k + 1
  loop until (k * thumbsPerPage) >= totalImages
  paging = paging + "<a href='" & thisPageURL & "?page=" & k & "'>" & k & "</a></b>"    'One more becase the logic cuts the last one off
end if
%>

<!-- This is where the HTML of the page starts :::: Page Title -->




<table align="center">
  <tr>
<%
' Loop through the array and display images
  for j =  first to last
    response.write(arrayOfThumbs(j))
    if (j+1) Mod thumbsPerRow = 0 then response.Write(vbCrLf & "</tr><tr>" & vbCrLf) 'Create a new row based on thumbsPer row
  next
%>
  </tr>
</table>
<!-- Write the paging piece at the bottom
<p align="center">
<%=paging%> &nbsp;&nbsp; Images <%=first+1%> - <%=lastDisplay%> of <%=totalImages%>
</p> -->

<%
'Display the big image Page
else
%>
<!-- Else show the selected picture.  -->


<script language='javascript'>
  window.open('<%=img%>')
  history.back() 
  </script>
 
<% end if %>
</body>
</html>
Avatar billede -42- Nybegynder
04. juli 2003 - 15:44 #6
Så kan du vist ikke komme tættere på!!!!!! Det virker, men det er bare thumbnailen der bliver downloadet  ;-)
Avatar billede tuctoh Nybegynder
04. juli 2003 - 15:47 #7
så burde den være der :)

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Photo Album</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="../styles.css">
</head>
<script language="JavaScript">
function saveImageAs (imgOrURL) {
    if (typeof imgOrURL == 'object')
      imgOrURL = imgOrURL.name;
    window.win = open (imgOrURL+'.jpg');
    setTimeout('win.document.execCommand("SaveAs")', 500);
  }
</script>

<body>
<%

' This code assumes you are using .jpg images for both the thumbnails and fullsize pictures. If you are
' using .gif then you will have to change it everywhere in the code.
' This also assumes that your thumbnails share the same name as your original with a common ending.
'  e.g. Faimily-01.jpg - would be the thumbnail
'      Family.jpg    - would be the large image

'Declare variables
dim thumbIdentifier    'The unique string that identifies a thumbnail vs. the big image
dim thumbsPerPage      'Number of thumbnails per page
dim thumbsPerRow      'Number of thumbnails per row
dim img                'The image to display (not the thumbnail but the big one)
dim page              'what page you are on
dim first              'first image of the set to display, a set being image 0-49 based upon number per page
dim last              'last image of the set for the array
dim lastDisplay        'last image of the set to display on the 'Images 20 - 40'
dim thisPageURL        'This is the name of this page eg. album.asp. If you re-name it links in page will update

thumbsPerPage = 200              ' Number of thumbnails to display on the page
thumbIdentifier = "-01.jpg" '    ' This is the common string ending for all thumbnail images.
thumbsPerRow = 3                ' Number of thumbnails to display per row - surprised?
thisPageURL = Request.ServerVariables("test.asp") 'This gets the name of this page eg. album.asp
page = request.queryString("page") 'This is the page you are on, used for paging
if page = "" then page = 1        'If no page # exists, set to 1
img = Request.querystring("img")  'Large image to display if they clicked a thumbnail
if img = "" then                  'If there is no image on URL, show the thumbnail page

' Determine which image to start / end at based upon paging and thumbsPerPage
first = ((page-1) * thumbsPerPage)
last = (page * thumbsPerPage)-1 'We do minus 1 here since we are using an array... array starts at 0 vs 1

  ' get the current folder location
    strPathInfo = Request.ServerVariables("SCRIPT_NAME")
    strPhysicalPath = Server.MapPath(strPathInfo)
    set objFSO = CreateObject("Scripting.FileSystemObject")
    set objFile = objFSO.GetFile(strPhysicalPath)
    set objFolder = objFile.ParentFolder
    set objFolderContents = objFolder.Files
   
  ' Count total number of thumbnails
  totalImages = 0
  For each objFileItem In objFolderContents
      if inStr(LCase(objFileItem.Name),thumbIdentifier) then
          totalImages = totalImages + 1
      end if
  next
 
'Limit last to totalImages so array does not go out of range.
if last > totalImages then last = totalImages

'Array starts at 0 vs. 1 so we need to offset this by 1 exception last image can'be be > than total # of images
lastDisplay = last + 1
if lastDisplay > totalImages then lastDisplay = totalImages
 
  ' Create an array to put all the images in so that we can do paging
  dim arrayOfThumbs()
  ReDim arrayOfThumbs(totalImages)
 
  dim i
  i = 0
' Populate the array with the images
For each objFileItem In objFolderContents
                ' only display the thumbnails - the images that have the ending defined in the thumbIdentifier variable at top of page
                if inStr(LCase(objFileItem.Name),thumbIdentifier) then
          'Isolate the image name so that we can create a link to the large version. This strips off the ending e.g. -01.jpg
                    image = split(objFileItem.Name, thumbIdentifier)
        ' Populate array
                arrayOfThumbs(i)= "<td nowrap valign='bottom' align='left'><a href='" & image(0) & ".jpg' target='_blank'>" & vbCrLf & _
                                  "<img src='" & objFileItem.Name & "' hspace='2' border='0' name='"& image(0) &"'></a><br><A HREF='java script: void 0' ONCLICK='saveImageAs(document."& image(0) &"); return false'>save image</A></td><td width='20'></td>" & vbCrLf
        i = i + 1
        end if
next


' Create page links if more than 1 page is needed
dim paging
if (thumbsPerPage < totalImages) then
' Assing all the page numbers to the paging string because we are going to use on top and bottom of page
paging = "Page: <b>"
  k = 1
  Do
    paging = paging + "<a href='" & thisPageURL & "?page=" & k & "'>" & k & "</a>" & vbCrLf
    k = k + 1
  loop until (k * thumbsPerPage) >= totalImages
  paging = paging + "<a href='" & thisPageURL & "?page=" & k & "'>" & k & "</a></b>"    'One more becase the logic cuts the last one off
end if
%>

<!-- This is where the HTML of the page starts :::: Page Title -->




<table align="center">
  <tr>
<%
' Loop through the array and display images
  for j =  first to last
    response.write(arrayOfThumbs(j))
    if (j+1) Mod thumbsPerRow = 0 then response.Write(vbCrLf & "</tr><tr>" & vbCrLf) 'Create a new row based on thumbsPer row
  next
%>
  </tr>
</table>
<!-- Write the paging piece at the bottom
<p align="center">
<%=paging%> &nbsp;&nbsp; Images <%=first+1%> - <%=lastDisplay%> of <%=totalImages%>
</p> -->

<%
'Display the big image Page
else
%>
<!-- Else show the selected picture.  -->


<script language='javascript'>
  window.open('<%=img%>')
  history.back() 
  </script>
 
<% end if %>
</body>
</html>
Avatar billede -42- Nybegynder
04. juli 2003 - 15:56 #8
MANGE TAK!!!!!!
Avatar billede tuctoh Nybegynder
04. juli 2003 - 15:57 #9
selv tak :)

hvis der er andet skal du bare sige til.
Avatar billede -42- Nybegynder
04. juli 2003 - 16:02 #10
Klart har du en mail hvis det er?
Avatar billede tuctoh Nybegynder
04. juli 2003 - 16:04 #11
webmaster@secretsofwar.net - men jeg foretrækker at du bruger eksperten, så alle andre også kan se svarene...
du behøves jo ikke smide 100 point af sted hver gang.
Avatar billede -42- Nybegynder
04. juli 2003 - 16:11 #12
Helt sikkert, men så kan jeg jo maile dig, når jeg poster noget interessant ASP...
Avatar billede tuctoh Nybegynder
04. juli 2003 - 16:27 #13
det er fair nok for mig
Avatar billede Ny bruger Nybegynder

Din løsning...

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.

Loading billede Opret Preview
Kategori
Kurser inden for grundlæggende programmering

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester