Menu Url

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
paolcon
User
Posts: 15

Menu Url

Post by paolcon »

Hello everyone,
I have a question, if I added in a Menu item, from Tool, with the url to a my .aspx page , can I also pass parameters ?

For example, taking the value from the form field in use.

Thanks


motfs
User
Posts: 258

Post by motfs »

You can add querystring to your menu item, e.g.

<table>list.cshtml?qs=<qsvalue>

Then, you can get the querystring in the Page_Load server event (C#):

string qs = ew_Get("qs");


paolcon
User
Posts: 15

Post by paolcon »

Thank you,
but can I use this method just if I call a page out from ASPNET MAKER ?
I mean a traditional aspx page

thanks


motfs
User
Posts: 258

Post by motfs »

If you mean you want to add a menu with your URL, it should be OK.


Post Reply