Setting the Parameter Part of URL Request to Select the HTML Tag MVC 4

libron

New member
Joined
Nov 2, 2012
Messages
3
Programming Experience
3-5
The URL Request

VB.NET:
http:// localhost:1430 / Home / TheMessageView / { parameter }

Home is the controller.
TheMessageView is the view holding the HTML.

The HelloWorld Messages

VB.NET:
<h2>The Hello World Message Headline</h2>

<p>The Hello World message in a paragraph here.</p>

The Question
The intention is to narrow it down to the preferred HelloWorld message and have it selected by its HTML tag, so that it can be printed on the screen. I imagened it with a HTML tag selector, similar to CSS.
 
Last edited:
I modified the question:
The intention is to narrow it down to the preferred HelloWorld message and have it selected by its HTML tag (with the URL request), so that it can be printed on the screen. I imagened it with a HTML tag selector, similar to CSS.
 
Back
Top