Basically this is an ASPX.net page written in VB.net
Create a default.aspx/default.vb using with Visual Studio or Dreamweaver
You can create a link in default.aspx e.g hyplnk1
Of course this code depends on you having your homedirectory set in AD
however it can be modified if this is not set in your AD but you do know your share paths
Ours are set using \\server\share\a\b\abill where its the first and second letters of the username for our folder structure
so if i have created a webdav point of STAFFH which = \\server\share then when i do the query against AD i strip out the server name and just use the \a\b\abob as i showed in my last post
if you dont have this set in AD then using the lines below would give you the same effect
Dim a As String
Dim b As String
a = LogonUser.Substring(0, 1)
b = LogonUser.Substring(1, 1)
so i have just taken the first and second letter from the username and of course my path would be
filesrv = "/STAFFH/" & a & "/" & b & "/" & LogonUser
I know some people do use the 1st letter of the users first and last name for their folder structure but if you have this information in AD then you can request and strip it in code also.
This code is good if you also want to have instructions for your users on how to create a web folder as you can display the path to their web folder instead of some general instructions
Here are a screenshot of mine
