我的网站上有一个HTML文件index.html,位于文件夹中。此文件夹包含index.html文件和另一个名为“Stylesheets”的文件夹,其中包含stylesheet.css文件。我如何链接到它?我知道如何做一个链接标记,但是href位给我带来了一些麻烦。我试过了
Private Function Decrypt(cipherText As String) As String
dim _encryptionkey as string = "kmjfds(#1231SDSA()#rt32geswfkjFJDSKFJDSFd"
Dim cipherBytes As Byte() = Convert.FromBase64String(cipherText)
Using encryptor As Aes = Aes.Create()
Dim pdb As New Rfc2898DeriveBytes(_EncryptionKey, New Byte() {&H49, &H76, &H61, &H6E, &H20, &H4D, &H65, &H64, &H76, &H65, &H64, &H65, _
&H76})
encryptor.Key = pdb.GetBytes(32)
encryptor.IV = pdb.GetBytes(16)
Using ms As New MemoryStream()
Using cs As New CryptoStream(ms, encryptor.CreateDecryptor(), CryptoStreamMode.Write)
cs.Write(cipherBytes, 0, cipherBytes.Length)
cs.Close()
End Using
cipherText = Encoding.Unicode.GetString(ms.ToArray())
End Using
End Using
Return cipherText
End Function
以及带点的一些变体。有任何想法吗?我尝试了一些谷歌搜索,但问题有点太复杂,无法在简单的谷歌查询中描述。请帮助!
答案 0 :(得分:2)
使用href="stylesheets/stylesheet.css"
或href="./stylesheets/stylesheet.css"
两者都意味着在当前文件夹内的stylesheet文件夹中查找stylesheet.css文件。
答案 1 :(得分:2)
您的路径 - class Program
{
static void Main(string[] args)
{
Deck myDeck = new Deck();
Card myCard = myDeck.DrawCard();
Console.WriteLine(myCard.ToString());
Console.ReadLine();
}
}
基本上与您想要的相反。它不会像您希望的那样进一步进入一个文件夹。
要实现你想要的目标,你将拥有这条道路:
href="../stylesheets/stylesheet.css"
Here您可以阅读有关文件路径的更多信息。