我正在asp.net中使用c#开发一个应用程序。在我的应用程序中,有两个页面,如abc.aspx和xyz.aspx。我正在打开xyz.aspx页面,在iframe of abc.aspx中。
在xyz.aspx页面中,我有一个名为ht_test_access的asp隐藏字段。现在我的要求是,我必须直接从abc.aspx访问隐藏字段的值,而不需要查询字符串、会话、cookie等。
我正在开发一个ASP.NET网络应用程序。
我有两个文件-> example.aspx及其代码在example.aspx.cs后面
我想知道将内联C#代码放在example.aspx顶部有什么区别?
<%
if (Session["Page"] != null)
{
//method that maps session vars to form elements
loadSessionData();
}
%>
并将代码放在文件example.aspx.cs后面的代码的exa
我正在开发一个具有聊天功能的web应用程序。我开始使用SignalR进行开发,但是在运行特定的网页时遇到了一个错误,alone.This就是我正在得到的错误。
Parser Error
Description: An error occurred during the parsing of a resource
required to service this request.Please review the following specific
parse error details and modify your source file appropriately.
Parse
我有一个在MVC2 / ASPX / c#开发的项目。我将其更新为MVC,它工作得很好。我刚刚注意到,当我发布它时,会遇到System.Web.Helpers的问题;并手动复制它。
由于应用程序非常复杂,我在新项目中开发了额外的组件。我使用的是MVC3 ASPX视图,在我的视图中,我使用:
var series = <%= Html.Raw(Json.Encode(ViewBag.Series)) %>;
它工作得很好,当我在旧的应用程序中集成控制器、视图和母版页时,我得到了这个错误:
The name 'Json' does not exist in the c
我正在尝试获取POST数据,但我没有运气。我的代码如下。当我单击表单按钮时,没有任何反应。
我希望至少我的集成开发环境能够在A.Ret()上运行,但是什么也没发生。
文件Test.cs
using System.Web;
public class A
{
public static string ret() {
var c = HttpContext.Current;
var v = c.Request.QueryString; // <-- I can see get data in this
return c.Request.U