Skip to content

Commit b26df6f

Browse files
nemrismmairaw
authored andcommitted
Replace NIB links with docs/previous equivalent (#3135)
* Replace NIB links with docs/previous equivalent * apply @mairaw's suggestion Make /previous-versions/ links absolute: https://docs.microsoft.com/previous-versions/
1 parent 1ed96ca commit b26df6f

28 files changed

+38
-38
lines changed

xml/System.Web.Configuration/HttpModuleAction.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
3232
The following configuration file example shows how to specify values declaratively for the `httpModules` section.
3333
34-
Refer to the [NIB: How to: Create and Configure an HTTP Module](https://msdn.microsoft.com/library/4174fd13-a9c4-4ff6-baa5-3f7d7fc73ef3) to see how to build and configure an HTTP module.
34+
Refer to the [How to: Create and Configure an HTTP Module](https://docs.microsoft.com/previous-versions/dotnet/netframework-3.0/tfd6k449(v=vs.85)) to see how to build and configure an HTTP module.
3535
3636
```
3737
<httpModules>

xml/System.Web.Configuration/HttpModuleActionCollection.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
[!code-csharp[System.Web.Configuration.HttpModuleActionCollection#1](~/samples/snippets/csharp/VS_Snippets_WebNet/System.Web.Configuration.HttpModuleActionCollection/CS/httpmoduleactioncollection.cs#1)]
3636
[!code-vb[System.Web.Configuration.HttpModuleActionCollection#1](~/samples/snippets/visualbasic/VS_Snippets_WebNet/System.Web.Configuration.HttpModuleActionCollection/VB/httpmoduleactioncollection.vb#1)]
3737
38-
The following example is an excerpt of the configuration file that enables ASP.NET to use a custom module. For a complete example of how to build and configure an HTTP module, see the [NIB: How to: Create and Configure an HTTP Module](https://msdn.microsoft.com/library/4174fd13-a9c4-4ff6-baa5-3f7d7fc73ef3).
38+
The following example is an excerpt of the configuration file that enables ASP.NET to use a custom module. For a complete example of how to build and configure an HTTP module, see the [How to: Create and Configure an HTTP Module](https://docs.microsoft.com/previous-versions/dotnet/netframework-3.0/tfd6k449(v=vs.85)).
3939
4040
```
4141
<httpModules>

xml/System.Web.Management/BufferedWebEventProvider.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
If you want to customize the health-event processing, you can derive from the <xref:System.Web.Management.BufferedWebEventProvider> class to create your own custom buffered provider.
2626
2727
> [!NOTE]
28-
> In most cases you will be able to use the ASP.NET health-monitoring types as implemented, and you will control the health-monitoring system by specifying values in the `healthMonitoring` configuration section. You can also derive from the health-monitoring types to create your own custom events and providers. For an example of creating a custom provider, see [How to: Implement the Health Monitoring Custom Provider Example](https://msdn.microsoft.com/library/bbb1c959-e6e4-42b2-be62-49b7ca5ab72c).
28+
> In most cases you will be able to use the ASP.NET health-monitoring types as implemented, and you will control the health-monitoring system by specifying values in the `healthMonitoring` configuration section. You can also derive from the health-monitoring types to create your own custom events and providers. For an example of creating a custom provider, see [How to: Implement the Health Monitoring Custom Provider Example](https://docs.microsoft.com/previous-versions/ms178718(v=vs.140)).
2929
3030
3131

xml/System.Web.Management/EventLogWebEventProvider.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
The <xref:System.Web.Management.EventLogWebEventProvider>, the failure audit, and the error health-monitoring events are configured (enabled) by default. This means that the failure audit and the error health-monitoring events are logged in the Windows Application Event Log by default.
2626
2727
> [!NOTE]
28-
> In most cases you will be able to use the ASP.NET health-monitoring types as implemented, and you will control the health-monitoring system by specifying values in the `healthMonitoring` configuration section. You can also derive from the health-monitoring types to create your own custom events and providers. For an example of creating a custom provider, see [How to: Implement the Health Monitoring Custom Provider Example](https://msdn.microsoft.com/library/bbb1c959-e6e4-42b2-be62-49b7ca5ab72c).
28+
> In most cases you will be able to use the ASP.NET health-monitoring types as implemented, and you will control the health-monitoring system by specifying values in the `healthMonitoring` configuration section. You can also derive from the health-monitoring types to create your own custom events and providers. For an example of creating a custom provider, see [How to: Implement the Health Monitoring Custom Provider Example](https://docs.microsoft.com/previous-versions/ms178718(v=vs.140)).
2929
3030
3131
@@ -50,7 +50,7 @@
5050
]]></format>
5151
</remarks>
5252
<related type="Article" href="https://msdn.microsoft.com/library/e003f224-70fe-4cd8-a71a-2dc81e2d7e4c">ASP.NET Health Monitoring Overview</related>
53-
<related type="Article" href="https://msdn.microsoft.com/library/bbb1c959-e6e4-42b2-be62-49b7ca5ab72c">ASP.NET Health-Monitoring Custom Provider Sample</related>
53+
<related type="Article" href="https://docs.microsoft.com/previous-versions/ms178718(v=vs.140)">ASP.NET Health-Monitoring Custom Provider Sample</related>
5454
<related type="Article" href="https://msdn.microsoft.com/library/ab894e83-7e2f-4af8-a116-b1bff8f815b2">Installing and Configuring ASP.NET Providers</related>
5555
</Docs>
5656
<Members>

xml/System.Web.Management/MailWebEventProvider.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
The <xref:System.Web.Management.MailWebEventProvider> class is a base class for building providers that monitor Web events and send email for selected events. This class supports the .NET Framework infrastructure and is not intended to be inherited from or used directly from your code.
2626
2727
> [!NOTE]
28-
> In most cases you will be able to use the ASP.NET health-monitoring types as implemented, and you will control the health-monitoring system by specifying values in the `<healthMonitoring>` configuration section. You can also derive from the health-monitoring types to create your own custom events and providers. For an example of creating a custom provider, see [How to: Implement the Health Monitoring Custom Provider Example](https://msdn.microsoft.com/library/bbb1c959-e6e4-42b2-be62-49b7ca5ab72c).
28+
> In most cases you will be able to use the ASP.NET health-monitoring types as implemented, and you will control the health-monitoring system by specifying values in the `<healthMonitoring>` configuration section. You can also derive from the health-monitoring types to create your own custom events and providers. For an example of creating a custom provider, see [How to: Implement the Health Monitoring Custom Provider Example](https://docs.microsoft.com/previous-versions/ms178718(v=vs.140)).
2929
3030
]]></format>
3131
</remarks>

xml/System.Web.Management/SqlWebEventProvider.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
This provider has a comprehensive set of configuration attributes that you can use to customize its behavior.
2626
2727
> [!NOTE]
28-
> In most cases you will be able to use the ASP.NET health-monitoring types as implemented, and you will control the health-monitoring system by specifying values in the `<healthMonitoring>` configuration section. You can also derive from the health-monitoring types to create your own custom events and providers. For an example of creating a custom provider, see [How to: Implement the Health Monitoring Custom Provider Example](https://msdn.microsoft.com/library/bbb1c959-e6e4-42b2-be62-49b7ca5ab72c).
28+
> In most cases you will be able to use the ASP.NET health-monitoring types as implemented, and you will control the health-monitoring system by specifying values in the `<healthMonitoring>` configuration section. You can also derive from the health-monitoring types to create your own custom events and providers. For an example of creating a custom provider, see [How to: Implement the Health Monitoring Custom Provider Example](https://docs.microsoft.com/previous-versions/ms178718(v=vs.140)).
2929
3030
3131

xml/System.Web.Management/TraceWebEventProvider.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
> The <xref:System.Web.Management.TraceWebEventProvider> object does not provide event buffering.
2929
3030
> [!NOTE]
31-
> In most cases you will be able to use the ASP.NET health-monitoring types as implemented, and you will control the health-monitoring system by specifying values in the `healthMonitoring` configuration section. You can also derive from the health-monitoring types to create your own custom events and providers. For an example of creating a custom provider, see [How to: Implement the Health Monitoring Custom Provider Example](https://msdn.microsoft.com/library/bbb1c959-e6e4-42b2-be62-49b7ca5ab72c).
31+
> In most cases you will be able to use the ASP.NET health-monitoring types as implemented, and you will control the health-monitoring system by specifying values in the `healthMonitoring` configuration section. You can also derive from the health-monitoring types to create your own custom events and providers. For an example of creating a custom provider, see [How to: Implement the Health Monitoring Custom Provider Example](https://docs.microsoft.com/previous-versions/ms178718(v=vs.140)).
3232
3333
3434

xml/System.Web.Management/WebEventProvider.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
]]></format>
6565
</remarks>
6666
<related type="Article" href="https://msdn.microsoft.com/library/e003f224-70fe-4cd8-a71a-2dc81e2d7e4c">ASP.NET Health Monitoring Overview</related>
67-
<related type="Article" href="https://msdn.microsoft.com/library/bbb1c959-e6e4-42b2-be62-49b7ca5ab72c">Example: Custom Event Provider</related>
67+
<related type="Article" href="https://docs.microsoft.com/previous-versions/ms178718(v=vs.140)">Example: Custom Event Provider</related>
6868
<related type="Article" href="https://msdn.microsoft.com/library/ab894e83-7e2f-4af8-a116-b1bff8f815b2">Installing and Configuring ASP.NET Providers</related>
6969
</Docs>
7070
<Members>

xml/System.Web.Management/WmiWebEventProvider.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
2525
ASP.NET uses this class to map health-monitoring events to WMI events. To enable the delivery of ASP.NET health-monitoring events to the WMI subsystem, you must configure the <xref:System.Web.Management.WmiWebEventProvider> class by adding the appropriate settings in the `<healthMonitoring>` section of the configuration file.
2626
27-
The information contained in the Aspnet.mof file describes the parameters of the WMI events raised when ASP.NET health-monitoring events are routed to the <xref:System.Web.Management.WmiWebEventProvider> class and mapped into WMI events. The Aspnet.mof file is stored in the .NET Framework build directory, for example %windir%\Microsoft.NET\Framework\\*BuildNumber*. For more information about reporting health-monitoring events as WMI events, see [NIB: Using WMI to Deliver ASP.NET Health Monitoring Events](https://msdn.microsoft.com/library/e57fea2f-610f-4432-9dd6-dd10a6c5bd10).
27+
The information contained in the Aspnet.mof file describes the parameters of the WMI events raised when ASP.NET health-monitoring events are routed to the <xref:System.Web.Management.WmiWebEventProvider> class and mapped into WMI events. The Aspnet.mof file is stored in the .NET Framework build directory, for example %windir%\Microsoft.NET\Framework\\*BuildNumber*. For more information about reporting health-monitoring events as WMI events, see [Using WMI to Deliver ASP.NET Health Monitoring Events](https://docs.microsoft.com/previous-versions/dotnet/netframework-3.0/ms178709(v=vs.85)).
2828
2929
> [!NOTE]
30-
> In most cases you will be able to use the ASP.NET health-monitoring types as implemented, and you will control the health-monitoring system by specifying values in the `<healthMonitoring>` configuration section. You can also derive from the health-monitoring types to create your own custom events and providers. For an example of creating a custom provider, see [How to: Implement the Health Monitoring Custom Provider Example](https://msdn.microsoft.com/library/bbb1c959-e6e4-42b2-be62-49b7ca5ab72c).
30+
> In most cases you will be able to use the ASP.NET health-monitoring types as implemented, and you will control the health-monitoring system by specifying values in the `<healthMonitoring>` configuration section. You can also derive from the health-monitoring types to create your own custom events and providers. For an example of creating a custom provider, see [How to: Implement the Health Monitoring Custom Provider Example](https://docs.microsoft.com/previous-versions/ms178718(v=vs.140)).
3131
3232
3333
@@ -57,7 +57,7 @@
5757
]]></format>
5858
</remarks>
5959
<related type="Article" href="https://msdn.microsoft.com/library/e003f224-70fe-4cd8-a71a-2dc81e2d7e4c">ASP.NET Health Monitoring Overview</related>
60-
<related type="Article" href="https://msdn.microsoft.com/library/bbb1c959-e6e4-42b2-be62-49b7ca5ab72c">ASP.NET Health-Monitoring Custom Provider Sample</related>
60+
<related type="Article" href="https://docs.microsoft.com/previous-versions/ms178718(v=vs.140)">ASP.NET Health-Monitoring Custom Provider Sample</related>
6161
<related type="Article" href="https://msdn.microsoft.com/library/ab894e83-7e2f-4af8-a116-b1bff8f815b2">Installing and Configuring ASP.NET Providers</related>
6262
</Docs>
6363
<Members>

xml/System.Web.UI.HtmlControls/HtmlAnchor.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@
537537
> [!NOTE]
538538
> The <xref:System.Web.UI.HtmlControls.HtmlAnchor.Target%2A> property renders as a `target` attribute. The `target` attribute on `a` elements is not allowed in the XHTML 1.1 document type definition. Do not set the <xref:System.Web.UI.HtmlControls.HtmlAnchor.Target%2A> property if the rendered output for the <xref:System.Web.UI.HtmlControls.HtmlAnchor> must be compliant with XHTML 1.1. For more information, see [XHTML Standards in Visual Studio and ASP.NET](https://msdn.microsoft.com/library/1b78d416-66bb-43a5-ac77-c703aab55b97).
539539
>
540-
> When creating accessible Web pages, avoid using the <xref:System.Web.UI.HtmlControls.HtmlAnchor.Target%2A> property to target another window. For more information, see [NIB: ASP.NET Accessibility](https://msdn.microsoft.com/library/9b5f3e05-e88d-4248-a5f4-9e64850fa0ae).
540+
> When creating accessible Web pages, avoid using the <xref:System.Web.UI.HtmlControls.HtmlAnchor.Target%2A> property to target another window. For more information, see [ASP.NET Accessibility](https://docs.microsoft.com/previous-versions/aspnet/ms228011(v=vs.100)).
541541
542542
The <xref:System.Web.UI.HtmlControls.HtmlAnchor.Target%2A> value must begin with a letter in the range of A to Z (case-insensitive), except for the following special values, which begin with an underscore.
543543

0 commit comments

Comments
 (0)