Änderungen Invoices.aspx und Web.config
This commit is contained in:
@@ -184,7 +184,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="Abstand_laenger" style="height: /*24px*/ 1.873536299765808vh;"></div>
|
<div id="Abstand_laenger" style="height: /*24px*/ 1.873536299765808vh;"></div>
|
||||||
<asp:Button ID="btn_Send_Data" class="btn btn-primary" OnClick="btn_Send_Data_Click" runat="server" Text="Erhalte Rechnungen" CausesValidation="false" style="font-size:1.33em;width:260px;height:30px;color:#fff" />
|
<asp:Button ID="btn_Send_Data" class="btn btn-primary" runat="server" Text="Erhalte Rechnungen" OnClick="btn_Send_Data_Click" CausesValidation="false" style="font-size:1.33em;width:260px;height:30px;color:#fff" />
|
||||||
|
|
||||||
<div id="Abstand_lang" style="height: /*32px*/ 2.498048399687744vh;"></div>
|
<div id="Abstand_lang" style="height: /*32px*/ 2.498048399687744vh;"></div>
|
||||||
<div class="g-3">
|
<div class="g-3">
|
||||||
<div id="conovertab" style="overflow-x:auto;margin-left:-2px">
|
<div id="conovertab" style="overflow-x:auto;margin-left:-2px">
|
||||||
|
|||||||
@@ -164,6 +164,7 @@ Partial Class Customers_Invoices
|
|||||||
|
|
||||||
Protected Sub btn_Send_Data_Click(sender As Object, e As EventArgs)
|
Protected Sub btn_Send_Data_Click(sender As Object, e As EventArgs)
|
||||||
dt = Nothing
|
dt = Nothing
|
||||||
|
|
||||||
valreq_pickdate1.Validate()
|
valreq_pickdate1.Validate()
|
||||||
valreq_pickdate2.Validate()
|
valreq_pickdate2.Validate()
|
||||||
If valreq_pickdate1.IsValid And valreq_pickdate2.IsValid And Kdnrtext = Not "" Then
|
If valreq_pickdate1.IsValid And valreq_pickdate2.IsValid And Kdnrtext = Not "" Then
|
||||||
@@ -231,78 +232,76 @@ Partial Class Customers_Invoices
|
|||||||
regexval_txt_ReNr.Enabled = True
|
regexval_txt_ReNr.Enabled = True
|
||||||
regexval_txt_ReNr.Validate()
|
regexval_txt_ReNr.Validate()
|
||||||
Try
|
Try
|
||||||
If regexval_txt_ReNr.IsValid = True Then
|
If regexval_txt_ReNr.IsValid = True Then
|
||||||
reNr = txt_ReNr.Text
|
reNr = txt_ReNr.Text
|
||||||
Else
|
Else
|
||||||
reNr = String.Empty
|
reNr = String.Empty
|
||||||
End If
|
End If
|
||||||
Catch ex As FormatException
|
Catch ex As FormatException
|
||||||
lbl_status.Text = ex.Message
|
lbl_status.Text = ex.Message
|
||||||
End Try
|
End Try
|
||||||
End If
|
End If
|
||||||
|
If Not String.IsNullOrEmpty(txt_Absender_M.Text) Then
|
||||||
|
txt_Absender_M.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
||||||
|
Try
|
||||||
|
Absender = txt_Absender_M.Text
|
||||||
|
Catch ex As FormatException
|
||||||
|
lbl_status.Text = ex.Message
|
||||||
|
End Try
|
||||||
|
End If
|
||||||
|
If Not String.IsNullOrEmpty(txt_Empfaenger_M.Text) Then
|
||||||
|
txt_Empfaenger_M.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
||||||
|
Try
|
||||||
|
Empfaenger = txt_Empfaenger_M.Text
|
||||||
|
Catch ex As FormatException
|
||||||
|
lbl_status.Text = ex.Message
|
||||||
|
End Try
|
||||||
|
End If
|
||||||
|
If Not String.IsNullOrEmpty(txt_KdNrAuftrag_M.Text) Then
|
||||||
|
txt_KdNrAuftrag_M.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
||||||
|
Try
|
||||||
|
KDNAFNR = txt_KdNrAuftrag_M.Text
|
||||||
|
Catch ex As FormatException
|
||||||
|
lbl_status.Text = ex.Message
|
||||||
|
End Try
|
||||||
|
End If
|
||||||
|
If Not String.IsNullOrEmpty(txt_LKWNr_M.Text) Then
|
||||||
|
txt_LKWNr_M.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
||||||
|
Try
|
||||||
|
LKWNR = txt_LKWNr_M.Text
|
||||||
|
Catch ex As FormatException
|
||||||
|
lbl_status.Text = ex.Message
|
||||||
|
End Try
|
||||||
|
End If
|
||||||
|
If Not String.IsNullOrEmpty(txt_ReNr_M.Text) Then
|
||||||
|
txt_ReNr_M.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
||||||
|
Try
|
||||||
|
reNr = txt_ReNr_M.Text
|
||||||
|
Catch ex As FormatException
|
||||||
|
lbl_status.Text = ex.Message
|
||||||
|
End Try
|
||||||
|
End If
|
||||||
|
|
||||||
If Not String.IsNullOrEmpty(txt_Absender_M.Text) Then
|
If pickdate1.Text = Nothing Or pickdate2.Text = Nothing Then
|
||||||
txt_Absender_M.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
Try
|
||||||
Try
|
Dim erster = New Date(Now().Year, Now().Month, 1)
|
||||||
Absender = txt_Absender_M.Text
|
Dim ersterdat = erster.Day.ToString + "." + Now().Month.ToString + "." + Now().Year.ToString
|
||||||
Catch ex As FormatException
|
' lbl_status.Text=ersterdat)
|
||||||
lbl_status.Text = ex.Message
|
datevon = ersterdat
|
||||||
End Try
|
pickdate1.Text = erster.Day.ToString + "." + Now().Month.ToString + "." + Now().Year.ToString
|
||||||
End If
|
datebis = Date.Parse(Now().Day.ToString + "." + Now().Month.ToString + "." + Now().Year.ToString).ToString
|
||||||
If Not String.IsNullOrEmpty(txt_Empfaenger_M.Text) Then
|
pickdate2.Text = Date.Parse(Now().Day.ToString + "." + Now().Month.ToString + "." + Now().Year.ToString).ToString
|
||||||
txt_Empfaenger_M.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
Catch ex As ValidationException When Date.ParseExact(pickdate1.Text, "dd.MM.yyyy", Nothing).Year < Date.ParseExact("2001", "yyyy", Nothing).Year And Date.ParseExact(pickdate2.Text, "dd.MM.yyyy", Nothing).Year > Date.ParseExact(Today, "dd.MM.yyyy", Nothing).Year
|
||||||
Try
|
|
||||||
Empfaenger = txt_Empfaenger_M.Text
|
|
||||||
Catch ex As FormatException
|
|
||||||
lbl_status.Text = ex.Message
|
|
||||||
End Try
|
|
||||||
End If
|
|
||||||
If Not String.IsNullOrEmpty(txt_KdNrAuftrag_M.Text) Then
|
|
||||||
txt_KdNrAuftrag_M.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
|
||||||
Try
|
|
||||||
KDNAFNR = txt_KdNrAuftrag_M.Text
|
|
||||||
Catch ex As FormatException
|
|
||||||
lbl_status.Text = ex.Message
|
|
||||||
End Try
|
|
||||||
End If
|
|
||||||
If Not String.IsNullOrEmpty(txt_LKWNr_M.Text) Then
|
|
||||||
txt_LKWNr_M.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
|
||||||
Try
|
|
||||||
LKWNR = txt_LKWNr_M.Text
|
|
||||||
Catch ex As FormatException
|
|
||||||
lbl_status.Text = ex.Message
|
|
||||||
End Try
|
|
||||||
End If
|
|
||||||
|
|
||||||
If Not String.IsNullOrEmpty(txt_ReNr_M.Text) Then
|
|
||||||
txt_ReNr_M.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
|
||||||
Try
|
|
||||||
reNr = txt_ReNr_M.Text
|
|
||||||
Catch ex As FormatException
|
|
||||||
lbl_status.Text = ex.Message
|
|
||||||
End Try
|
|
||||||
End If
|
|
||||||
|
|
||||||
If pickdate1.Text = Nothing Or pickdate2.Text = Nothing Then
|
|
||||||
Try
|
|
||||||
Dim erster = New Date(Now().Year, Now().Month, 1)
|
|
||||||
Dim ersterdat = erster.Day.ToString + "." + Now().Month.ToString + "." + Now().Year.ToString
|
|
||||||
' lbl_status.Text=ersterdat)
|
|
||||||
datevon = ersterdat
|
|
||||||
pickdate1.Text = erster.Day.ToString + "." + Now().Month.ToString + "." + Now().Year.ToString
|
|
||||||
datebis = Date.Parse(Now().Day.ToString + "." + Now().Month.ToString + "." + Now().Year.ToString).ToString
|
|
||||||
pickdate2.Text = Date.Parse(Now().Day.ToString + "." + Now().Month.ToString + "." + Now().Year.ToString).ToString
|
|
||||||
Catch ex As ValidationException When Date.ParseExact(pickdate1.Text, "dd.MM.yyyy", Nothing).Year < Date.ParseExact("2001", "yyyy", Nothing).Year And Date.ParseExact(pickdate2.Text, "dd.MM.yyyy", Nothing).Year > Date.ParseExact(Today, "dd.MM.yyyy", Nothing).Year
|
|
||||||
lbl_status.Text = "Der gewählte Von-Zeitpunkt ist nicht gültig!"
|
lbl_status.Text = "Der gewählte Von-Zeitpunkt ist nicht gültig!"
|
||||||
End Try
|
End Try
|
||||||
Else
|
Else
|
||||||
Try
|
Try
|
||||||
datevon = Date.Parse(pickdate1.Text)
|
datevon = Date.Parse(pickdate1.Text)
|
||||||
datebis = Date.Parse(pickdate2.Text)
|
datebis = Date.Parse(pickdate2.Text)
|
||||||
Catch ex As ValidationException When Date.ParseExact(pickdate1.Text, "dd.MM.yyyy", Nothing).Year < Date.ParseExact("2001", "yyyy", Nothing).Year And Date.ParseExact(pickdate2.Text, "dd.MM.yyyy", Nothing).Year > Date.ParseExact(Today, "dd.MM.yyyy", Nothing).Year
|
Catch ex As ValidationException When Date.ParseExact(pickdate1.Text, "dd.MM.yyyy", Nothing).Year < Date.ParseExact("2001", "yyyy", Nothing).Year And Date.ParseExact(pickdate2.Text, "dd.MM.yyyy", Nothing).Year > Date.ParseExact(Today, "dd.MM.yyyy", Nothing).Year
|
||||||
lbl_status.Text = "Der gewählte Bis-Zeitpunkt ist nicht gültig!"
|
lbl_status.Text = "Der gewählte Bis-Zeitpunkt ist nicht gültig!"
|
||||||
End Try
|
End Try
|
||||||
End If
|
End If
|
||||||
|
|
||||||
'lbl_status.Text = Kdnrtext
|
'lbl_status.Text = Kdnrtext
|
||||||
If String.IsNullOrEmpty(Kdnrtext) = False And String.IsNullOrEmpty(datevon.ToString) = False And String.IsNullOrEmpty(datebis.ToString) = False Then
|
If String.IsNullOrEmpty(Kdnrtext) = False And String.IsNullOrEmpty(datevon.ToString) = False And String.IsNullOrEmpty(datebis.ToString) = False Then
|
||||||
@@ -311,75 +310,76 @@ Partial Class Customers_Invoices
|
|||||||
lbl_status.Text = "Bitte alle fehlenden Felder ausfüllen!"
|
lbl_status.Text = "Bitte alle fehlenden Felder ausfüllen!"
|
||||||
valreq_pickdate1.Validate()
|
valreq_pickdate1.Validate()
|
||||||
valreq_pickdate2.Validate()
|
valreq_pickdate2.Validate()
|
||||||
End If
|
|
||||||
|
|
||||||
If dt IsNot Nothing AndAlso Not dt.Count = 0 Then
|
|
||||||
Dim i As Integer = 0
|
|
||||||
For Each d In dt
|
|
||||||
Dim tr = New TableRow
|
|
||||||
Dim Cell = New TableCell
|
|
||||||
Dim tbl_CellIndex = New TableCell
|
|
||||||
Dim tbl_CellRENr = New TableCell
|
|
||||||
Dim tbl_Cell_Auftragsdatum = New TableCell
|
|
||||||
Dim tbl_CellAbsender = New TableCell
|
|
||||||
Dim tbl_CellEmpfaenger = New TableCell
|
|
||||||
Dim tbl_CellLKWs = New TableCell
|
|
||||||
Dim tbl_CellKundAuftNr = New TableCell
|
|
||||||
Dim tbl_CellInfo = New TableCell
|
|
||||||
|
|
||||||
Dim zahl = i + 1
|
|
||||||
tbl_CellIndex.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
|
||||||
tbl_CellIndex.Text = zahl
|
|
||||||
tr.Cells.Add(tbl_CellIndex)
|
|
||||||
tbl_CellRENr.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
|
||||||
tbl_CellRENr.Text = d.RechnungsNr.ToString
|
|
||||||
tr.Cells.Add(tbl_CellRENr)
|
|
||||||
tbl_CellLKWs.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
|
||||||
tbl_CellLKWs.Text = d.LKW_Kennzeichen.ToString
|
|
||||||
tr.Cells.Add(tbl_CellLKWs)
|
|
||||||
tbl_Cell_Auftragsdatum.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
|
||||||
tbl_Cell_Auftragsdatum.Text = d.RechnungsDatum.ToString
|
|
||||||
tr.Cells.Add(tbl_Cell_Auftragsdatum)
|
|
||||||
tbl_CellKundAuftNr.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
|
||||||
tbl_CellKundAuftNr.Text = d.KdAuftragsNr.ToString
|
|
||||||
tr.Cells.Add(tbl_CellKundAuftNr)
|
|
||||||
tbl_CellAbsender.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
|
||||||
tbl_CellAbsender.Text = d.AbsenderName_1.ToString + Space(1) + d.AbsenderName_2.ToString
|
|
||||||
tr.Cells.Add(tbl_CellAbsender)
|
|
||||||
tbl_CellEmpfaenger.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
|
||||||
tbl_CellEmpfaenger.Text = d.EmpfängerName_1.ToString + Space(1) + d.EmpfängerName_2.ToString
|
|
||||||
tr.Cells.Add(tbl_CellEmpfaenger)
|
|
||||||
|
|
||||||
Dim btn As New ImageButton
|
|
||||||
btn.ViewStateMode = ViewStateMode.Enabled
|
|
||||||
'btn.Text = "Text"
|
|
||||||
btn.CssClass = "btn btn-primary"
|
|
||||||
btn.ImageUrl = "../images/Icons/service/pdficon.gif"
|
|
||||||
'btn.Attributes.Add("Text", <img src= width="15" height="15"/>)
|
|
||||||
btn.Attributes.Add("href", "pdfviewer.aspx?P1=" + VERAG_PROG_ALLGEMEIN.cCryptography3.Encrypt(d.FilialenNr).ToString() + "&P2=" + VERAG_PROG_ALLGEMEIN.cCryptography3.Encrypt(d.AbfertigungsNr).ToString + "&P3=" + VERAG_PROG_ALLGEMEIN.cCryptography3.Encrypt(d.RK_ID).ToString)
|
|
||||||
btn.Attributes.Add("target", "_blank")
|
|
||||||
btn.PostBackUrl = "pdfviewer.aspx?P1=" + VERAG_PROG_ALLGEMEIN.cCryptography3.Encrypt(d.FilialenNr).ToString + "&P2=" + VERAG_PROG_ALLGEMEIN.cCryptography3.Encrypt(d.AbfertigungsNr).ToString + "&P3=" + VERAG_PROG_ALLGEMEIN.cCryptography3.Encrypt(d.RK_ID).ToString
|
|
||||||
tbl_CellInfo.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
|
||||||
tbl_CellInfo.Controls.Add(btn)
|
|
||||||
tr.Cells.Add(tbl_CellInfo)
|
|
||||||
initcells(tr, tbl_CellIndex, tbl_CellRENr, tbl_CellLKWs, tbl_Cell_Auftragsdatum, tbl_CellKundAuftNr, tbl_CellAbsender, tbl_CellEmpfaenger, tbl_CellInfo, tbl_HeaderCellIndexNr, tbl_HeaderCell_ReNr, tbl_HeaderCell_LKWNr, tbl_HeaderCell_Auftragsdatum, tbl_HeaderCell_KundAuftrNr, tbl_HeaderCell_Absender, tbl_HeaderCell_Empfaenger, tbl_HeaderCell_Info)
|
|
||||||
normaltable.Rows.Add(tr)
|
|
||||||
|
|
||||||
i += 1
|
|
||||||
Next
|
|
||||||
Else
|
|
||||||
Dim tbl_cellNothing = New TableCell()
|
|
||||||
tbl_cellNothing.ColumnSpan = tbl_Header_row.Cells.Count
|
|
||||||
tbl_cellNothing.Style.Add("text-align", "center")
|
|
||||||
Dim tr = New TableRow()
|
|
||||||
tr.Style.Add("text-align", "center")
|
|
||||||
tbl_cellNothing.Text = Server.HtmlEncode("Keine Daten gefunden.")
|
|
||||||
tr.Cells.Add(tbl_cellNothing)
|
|
||||||
normaltable.Rows.Add(tr)
|
|
||||||
End If
|
|
||||||
Else
|
|
||||||
lbl_status.Text = "Error in valid date room"
|
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
If dt IsNot Nothing AndAlso Not dt.Count = 0 Then
|
||||||
|
Dim i As Integer = 0
|
||||||
|
For Each d In dt
|
||||||
|
Dim tr = New TableRow
|
||||||
|
Dim Cell = New TableCell
|
||||||
|
Dim tbl_CellIndex = New TableCell
|
||||||
|
Dim tbl_CellRENr = New TableCell
|
||||||
|
Dim tbl_Cell_Auftragsdatum = New TableCell
|
||||||
|
Dim tbl_CellAbsender = New TableCell
|
||||||
|
Dim tbl_CellEmpfaenger = New TableCell
|
||||||
|
Dim tbl_CellLKWs = New TableCell
|
||||||
|
Dim tbl_CellKundAuftNr = New TableCell
|
||||||
|
Dim tbl_CellInfo = New TableCell
|
||||||
|
|
||||||
|
Dim zahl = i + 1
|
||||||
|
tbl_CellIndex.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
||||||
|
tbl_CellIndex.Text = zahl
|
||||||
|
tr.Cells.Add(tbl_CellIndex)
|
||||||
|
tbl_CellRENr.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
||||||
|
tbl_CellRENr.Text = d.RechnungsNr.ToString
|
||||||
|
tr.Cells.Add(tbl_CellRENr)
|
||||||
|
tbl_CellLKWs.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
||||||
|
tbl_CellLKWs.Text = d.LKW_Kennzeichen.ToString
|
||||||
|
tr.Cells.Add(tbl_CellLKWs)
|
||||||
|
tbl_Cell_Auftragsdatum.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
||||||
|
tbl_Cell_Auftragsdatum.Text = d.RechnungsDatum.ToString
|
||||||
|
tr.Cells.Add(tbl_Cell_Auftragsdatum)
|
||||||
|
tbl_CellKundAuftNr.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
||||||
|
tbl_CellKundAuftNr.Text = d.KdAuftragsNr.ToString
|
||||||
|
tr.Cells.Add(tbl_CellKundAuftNr)
|
||||||
|
tbl_CellAbsender.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
||||||
|
tbl_CellAbsender.Text = d.AbsenderName_1.ToString + Space(1) + d.AbsenderName_2.ToString
|
||||||
|
tr.Cells.Add(tbl_CellAbsender)
|
||||||
|
tbl_CellEmpfaenger.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
||||||
|
tbl_CellEmpfaenger.Text = d.EmpfängerName_1.ToString + Space(1) + d.EmpfängerName_2.ToString
|
||||||
|
tr.Cells.Add(tbl_CellEmpfaenger)
|
||||||
|
|
||||||
|
Dim btn As New ImageButton
|
||||||
|
btn.ViewStateMode = ViewStateMode.Enabled
|
||||||
|
'btn.Text = "Text"
|
||||||
|
btn.CssClass = "btn btn-primary"
|
||||||
|
btn.ImageUrl = "../images/Icons/service/pdficon.gif"
|
||||||
|
'btn.Attributes.Add("Text", <img src= width="15" height="15"/>)
|
||||||
|
btn.Attributes.Add("href", "pdfviewer.aspx?P1=" + VERAG_PROG_ALLGEMEIN.cCryptography3.Encrypt(d.FilialenNr).ToString() + "&P2=" + VERAG_PROG_ALLGEMEIN.cCryptography3.Encrypt(d.AbfertigungsNr).ToString + "&P3=" + VERAG_PROG_ALLGEMEIN.cCryptography3.Encrypt(d.RK_ID).ToString)
|
||||||
|
btn.Attributes.Add("target", "_blank")
|
||||||
|
btn.PostBackUrl = "pdfviewer.aspx?P1=" + VERAG_PROG_ALLGEMEIN.cCryptography3.Encrypt(d.FilialenNr).ToString + "&P2=" + VERAG_PROG_ALLGEMEIN.cCryptography3.Encrypt(d.AbfertigungsNr).ToString + "&P3=" + VERAG_PROG_ALLGEMEIN.cCryptography3.Encrypt(d.RK_ID).ToString
|
||||||
|
tbl_CellInfo.ValidateRequestMode = UI.ValidateRequestMode.Enabled
|
||||||
|
tbl_CellInfo.Controls.Add(btn)
|
||||||
|
tr.Cells.Add(tbl_CellInfo)
|
||||||
|
initcells(tr, tbl_CellIndex, tbl_CellRENr, tbl_CellLKWs, tbl_Cell_Auftragsdatum, tbl_CellKundAuftNr, tbl_CellAbsender, tbl_CellEmpfaenger, tbl_CellInfo, tbl_HeaderCellIndexNr, tbl_HeaderCell_ReNr, tbl_HeaderCell_LKWNr, tbl_HeaderCell_Auftragsdatum, tbl_HeaderCell_KundAuftrNr, tbl_HeaderCell_Absender, tbl_HeaderCell_Empfaenger, tbl_HeaderCell_Info)
|
||||||
|
normaltable.Rows.Add(tr)
|
||||||
|
|
||||||
|
i += 1
|
||||||
|
Next
|
||||||
|
Else
|
||||||
|
Dim tbl_cellNothing = New TableCell()
|
||||||
|
tbl_cellNothing.ColumnSpan = tbl_Header_row.Cells.Count
|
||||||
|
tbl_cellNothing.Style.Add("text-align", "center")
|
||||||
|
Dim tr = New TableRow()
|
||||||
|
tr.Style.Add("text-align", "center")
|
||||||
|
tbl_cellNothing.Text = Server.HtmlEncode("Keine Daten gefunden.")
|
||||||
|
tr.Cells.Add(tbl_cellNothing)
|
||||||
|
normaltable.Rows.Add(tr)
|
||||||
|
End If
|
||||||
|
Else
|
||||||
|
lbl_status.Text = "Error in valid date room"
|
||||||
|
End If
|
||||||
'End If
|
'End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" ?>
|
||||||
<!--
|
<!--
|
||||||
Weitere Informationen zum Konfigurieren der ASP.NET-Anwendung finden Sie unter
|
Weitere Informationen zum Konfigurieren der ASP.NET-Anwendung finden Sie unter
|
||||||
http://go.microsoft.com/fwlink/?LinkId=169433
|
http://go.microsoft.com/fwlink/?LinkId=169433
|
||||||
@@ -122,7 +122,7 @@
|
|||||||
<appSettings>
|
<appSettings>
|
||||||
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
|
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
|
||||||
<add key="ClientValidationEnabled" value="true" />
|
<add key="ClientValidationEnabled" value="true" />
|
||||||
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
|
<add key="UnobtrusiveJavaScriptEnabled" value="false" />
|
||||||
</appSettings>
|
</appSettings>
|
||||||
<location path="Customers">
|
<location path="Customers">
|
||||||
<system.web>
|
<system.web>
|
||||||
|
|||||||
Reference in New Issue
Block a user