-1
我遇到了非常可能的簡單問題。有人可以請看一看,並告訴我我失蹤了什麼?c#從asp.net頁面訪問後面的代碼
我想從asp.net頁面調用一個代碼隱藏過程,但是,該過程是某種程度上甚至不運行 - 我已經爲調試放置了一個斷點,它似乎我只是繞過調用莫名其妙。
我用很簡單的廢話代碼只是爲了ilustrate問題:
<%@ Page Title="" Language="C#" MasterPageFile="~/MP_front_header.Master" AutoEventWireup="true" CodeBehind="seznam_spolecnosti.aspx.cs" Inherits="SWMv01.WebFormC" EnableEventValidation="false" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<asp:Label ID="lbl" runat="server" Text='<%# SWMv01.WebFormC.TestMe() %>' ></asp:Label>
</asp:Content>
後面的代碼看起來是這樣的:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Data;
using System.Configuration;
using System.Drawing;
using System.Collections;
using SWMv01.App_Classes;
using System.Globalization;
using Microsoft.VisualBasic;
using System.Threading;
namespace SWMv01
{
public partial class WebFormC : BasePage
{
protected void Page_Load(object sender, EventArgs e)
{
}
public static string TestMe()
{
int tst;
string tststr;
tst = 1 + 1;
tststr = Convert.ToString(tst);
return tststr;
}
}
}
非常感謝的人誰浪費他/她的時候幫助我:)
愚蠢的我,抱歉的跛腳問題。問題是,在我的代碼中,我實際上使用了列表視圖,並且我試圖以類似的方式綁定模板,並且在代碼隱藏中使用了數據綁定。儘管我會關注綁定。感謝您的時間。 –