Ask Your Question
2

Is it possible to inject IWebHostEnvironment in a vbhtml file?

asked 2022-10-18 11:00:00 +0000

woof gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2022-06-29 23:00:00 +0000

nofretete gravatar image

No, it is not possible to inject IWebHostEnvironment directly into a vbhtml file. The Razor view engine, which parses vbhtml files, does not support dependency injection by default. However, you can pass the IWebHostEnvironment instance as a parameter to a view through the ViewBag or ViewData objects, and then access it in the vbhtml file. For example:

In your controller:

public IActionResult Index()
{
    ViewBag.Environment = _env;
    return View();
}

In your vbhtml file:

@Code
    Dim env = TryCast(ViewBag.Environment, IWebHostEnvironment)
End Code
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-10-18 11:00:00 +0000

Seen: 19 times

Last updated: Jun 29 '22