問題,顯示輸出在aspx頁面從.NET新手</p> <p>你好
我試圖從aspx頁面我的Python代碼顯示輸出。
下面是.net c#代碼,通過點擊Button1來執行。
protected void Button1_Click1(object sender, EventArgs e)
{
ScriptEngine eng = Python.CreateEngine();
dynamic scope = eng.CreateScope();
eng.ExecuteFile(@"C:\path\hello.py", scope);
Label1.Text = //display output in Label1
}
下面是示例python腳本。
print "hello"
請問您能告訴我如何在Label1.Text中顯示「hello」嗎?
還有任何有關在python和asp.net之間傳遞數據的信息是讚賞。
感謝,
那麼你的'工程.ExecuteFile() '回來? – Juggernaut