Наследуйте проблему в asp.net

Мне нравится:

  • Делают панель задач больше так, чтобы она могла содержать две строки приложений
  • , Отключают персонализированные меню в меню "Пуск"
  • , Отключают группировку подобных объектов панели задач

я также случайным образом открытый много сессий PuTTY к различным машинам, таким образом, мне нравится создавать каталог "мусорного ведра" в моей домашней папке, добавьте его к ПУТИ, и затем создайте ярлык на PuTTY в ней, назвал "p" (среди других ярлыков). Я могу тогда (запущенный) легко Windows-R и тип p [putty-session-name] для открытия сессии. Это сэкономило мне массу времени / щелчки мышью.

5
задан Surya sasidhar 4 November 2009 в 05:00
поделиться

3 ответа

In your aspx page there will be the following at the top:

<%@ Page Language="C#" MasterPageFile="~/Test.Master" AutoEventWireup="true" CodeBehind="Test.aspx.cs" Inherits="TestApp.Test" Title="Untitled Page" %>

In your .cs file your class will be defined like:

namespace TestApp
{
    public partial class Test : System.Web.UI.Page
    {

Make sure the inherits property in the aspx page matches the class definition in the .cs file. In the example above it is 'TestApp.Test' in the inherits property and the class must have the same namespace and classname TestApp and Test.

You probably copied the whole contents of one of the files and now the two pieces no longer match up.

9
ответ дан 13 December 2019 в 19:29
поделиться

In your ASPX file, make sure the @Page declaration has an Inherits attribute that matches the full class name of the class in your code behind file. This declaration is usually the first line of the ASPX file. Also make sure that the class in your code behind file inherits System.Web.UI.Page and that it is not a sealed class.

0
ответ дан 13 December 2019 в 19:29
поделиться

My advice, create the new page with the same file name as the source.
Then copy and paste the codes into the new pages (APSX and code-behind). Works for me everytime.

1
ответ дан 13 December 2019 в 19:29
поделиться
Другие вопросы по тегам:

Похожие вопросы: