我有一封带有确认链接的电子邮件,类似于以下内容。该链接包含电子邮件地址,用户ID和确认代码。
Angular IIS Rewrite配置
Private Sub CommandButton1_Click()
Call Level1
End Sub
Sub Level1()
Dim n As Long
For n = 26 To 89
'UserForm1.Controls("CheckBox" & n) = False
Next
Dim i As Long, txt As String
For i = 1 To 3
**If UserForm1.Controls("Checkbox" & i) = True Then** (Error Here)
txt = txt & UserForm1.Controls("Checkbox" & i).Caption & ", "
End If
Next
txt = Left(txt, Len(txt) - 2)
'Cells(1, 1) = txt
TextBox1.Value = txt
End Sub
角度路线
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Angular Routes" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="/" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
当我使用localhost时,确认工作正常,但是当我部署到Azure IIS时,它只是显示“您正在寻找的资源已被删除,名称已更改或暂时不可用。”