The name 'txtinput1' does not exist in the current context
The name 'txtinput1' does not exist in the current context
首先,我知道这个问题看起来与这里的问题非常相似。但不知何故,那里提出的解决方法对我不起作用。所以接下来是我的代码。
在我的aspx页面中:
但是当我在代码后端尝试以下代码时:
protected void Page_Load(object sender, EventArgs e) { StemService.ServiceClient myClient = new StemService.ServiceClient(); string input = txtinput1.Text; }
我收到一个错误,说“txtinput1”不存在于上下文中。
为了完整起见,这是我的default.aspx https://gist.github.com/KodeSeeker/5217410。
附:我是一个C#的菜鸟,可能会错过一些显而易见的东西。
编辑:Designer.cs https://gist.github.com/KodeSeeker/5217484
编辑2:Default.aspx.cs:https://gist.github.com/KodeSeeker/5217517