13 lines
273 B
Plaintext
13 lines
273 B
Plaintext
[source,vbnet,diff-id=1,diff-type=compliant]
|
|
----
|
|
<Route("Something/[controller]")> ' '\' replaced with '/'
|
|
Public Class HomeController
|
|
Inherits Controller
|
|
|
|
<HttpGet>
|
|
Public Function Index() As ActionResult
|
|
Return View()
|
|
End Function
|
|
End Class
|
|
----
|