Hallo,
ich habe eine Custom ASPX Page erstellt für die Central Administration. Das tolle ist, sie funktioniert bei mir auf der Entwicklungsumgebung aber nicht da, wo sie produktiv eingesetzt werden soll.
Kann mir wer weiterhelfen? Die Seite besitzt 2 Textfelder, die nach einem Klick auf dem "OK" button die Werte abspeichern soll.
Dabei bekomme ich folgende Fehlermeldung
at System.Web.UI.WebControls.Button.OnClick(EventArgs e)
at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)
at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
Hier ein Ausschnitt aus dem Code
if (SASjob.Title == "SASCSVImports")
{
SAScsvimport = SASjob;
output = SAScsvimport.Title +
"<br />"; SASdictionary = SASjob.Properties; SASstringWebUrl = SAScsvimport.Properties[
"SASWebUrl"].ToString(); SASstringListname = SAScsvimport.Properties[
"SASListname"].ToString(); SASWebUrl.Text = SASstringWebUrl;
SASListname.Text = SASstringListname; hier die ASPX Page <% @AssemblyName="$SharePoint.Project.AssemblyFullName$"%> <% @ImportNamespace="Microsoft.SharePoint.ApplicationPages"%> <% @RegisterTagprefix="SharePoint"Namespace="Microsoft.SharePoint.WebControls"Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <% @RegisterTagprefix="Utilities"Namespace="Microsoft.SharePoint.Utilities"Assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <% @RegisterTagprefix="asp"Namespace="System.Web.UI"Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %> <% @ImportNamespace="Microsoft.SharePoint"%> <% @AssemblyName="Microsoft.Web.CommandUI, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <% @PageLanguage="C#"AutoEventWireup="true"CodeBehind="SASConfigPage.aspx.cs"Inherits="SASAdhoc.Layouts.SASAdhoc.SASConfigPage"DynamicMasterPageFile="~masterurl/default.master"%> WebUrl (website where csv import configuration is done) : Listname (list that stores csv import configuration) : /> > ="server"> SAS-Adhoc CSV-Import SAS-Adhoc CSV-Import
-------------------------------------------------------------------------------
Da ich leider nicht debuggen kann direkt auf der produktiven Umgebung, weiß ich nicht woran das liegt. Kann mir da wer weinen Tipp geben, was ich da unternehmen könnte?
Gruß
Ardenda