Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxButton.NavigateUrl Property

Specifies the Button’s target URL.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[Parameter]
public string NavigateUrl { get; set; }

#Property Value

Type Description
String

A URL to which the client web browser navigates.

#Remarks

Use the NavigateUrl property to specify a URL where the client web browser navigates in response to a click on the button. The browser opens this link in the same tab.

Razor
<DxButton NavigateUrl="https://demos.devexpress.com/blazor/Button">Demos</DxButton>

If you use the NavigateUrl property together with the Click event’s handler, the browser handles the event first and then navigates to the specified URL.

See Also