2016-02-03 83 views
0

我是mvc的新手,也許我的一些問題看起來很幼稚。使用asp.net創建帶有變量的字符串mvc

我有這樣的代碼鑑於Index.chtml頁:

enter image description here

我需要有兩個varaibles會議和weblayout但框架元素字符串的src屬性創建,好像我做的這是不對的。

和會話和weblayout的值不會產生,將是這樣的:

/mapserver201x/mapviewernet/ajaxviewer.aspx?SESSION= + session + &weblayout= + weblayout 

,我需要它是這樣的:

if value of session is:654276345234GSAKJD333, 
and value of weblayout is: Library://Exercise/WebCast/Hello.weblayout 

的結果應該是:

/mapserver201x/mapviewernet/ajaxviewer.aspx?SESSION=654276345234GSAKJD333 
&weblayout=Library://Exercise/WebCast/Hello.weblayout 

任何想法如何實現它?

回答

2
<frame src="/mapserver201x/mapviewernew/[email protected]["sessionId"]&[email protected]["webLayout"]" /> 

所有你已經在你的例子進行分配那些ViewData鍵的JavaScript變量,你有預期,這將無法正常工作的價值。

您肯定會從introduction to MVC中獲益以獲得基本知識。

此外,嘗試在您的問題中輸入代碼而不是使用圖像,它可以更容易地使用原始代碼應用答案。