# Remote Application

{% embed url="<https://youtu.be/CnAK-tQK0vc>" %}

{% file src="<https://1168517704-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FKLgWHTlbcMvpwVT7mLBW%2Fuploads%2FgqoBQl4Xc1GQIKEiMGMs%2FWisej.Hybrid.OnlineSample.zip?alt=media&token=4fcf87ba-593c-437d-8d68-45b91f7249fa>" %}

## Configuration

When creating a new Hybrid Client application, an online application can be specified with the **config.StartupUrl** member.

{% code title="Startup.cs" %}

```csharp
public static MauiApp Main()
{
	var builder = MauiApp.CreateBuilder();
	builder
		.UseMauiApp<App>()

		.UseWisejHybrid((config) =>
		{
			// Provide the startup URL for the Hybrid WebView.
			config.StartupUrl = "https://demo.wisej.com/Hybrid";
		});

	return builder.Build();
}
```

{% endcode %}

In the example above the client application registers an online app, hosted at **demo.wisej.com.** When the application starts up for the first time, it will navigate to this page.

&#x20;
