我创建了一个webgui Windows应用程序 我想在WebForm1.aspx中加载webgui form1.wgx,但我收到此IIS错误:
HTTP错误404.0 - 未找到
请求的网址http://localhost:20821/Form1.wgx?vwginstance=&vwgstateless=0
物理路径D:\ eshop training \ my sample \ VisualWebGuiApplication1 \ WebApplication2 \ Form1.wgx
登录方法匿名
登录用户匿名
请求跟踪目录 C:\用户\艾哈迈德\文件\ IISExpress \ TraceLogFiles \ WEBAPPLICATION2(3
我知道我无法找到Form1.wgx,但我做了一切根据其样本,那个样本有效,但我的不是 这是我的WebForm1.aspx来源:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication2.WebForm1" %>
<%@ Register Assembly="Gizmox.WebGUI.Forms" Namespace="Gizmox.WebGUI.Forms.Hosts" TagPrefix="VWG"%>
并在div标签中调用
<form name="form1" method="post">
<div>
<VWG:FormBox ID="form1" runat="server" Stateless="false" Height="700px"
Width="770px" Form="Form1" />
</div>
在解决方案中有两个项目:一个webgui应用程序和另一个Web应用程序我已完成web.config中所有需要的设置但我得到错误 有没有人有解决方案? 感谢