Global.asax wurde gefixed-
This commit is contained in:
@@ -213,12 +213,10 @@
|
|||||||
$(e.target).data('bs.collapse').$trigger.attr('src', 'https://s22.postimg.org/9takvqkal/Mathematic_Plus2.png');
|
$(e.target).data('bs.collapse').$trigger.attr('src', 'https://s22.postimg.org/9takvqkal/Mathematic_Plus2.png');
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<script src="https://cdn.jsdelivr.net/jquery.validation/1.16.0/jquery.validate.min.js"></script>
|
<script src="https://cdn.jsdelivr.net/jquery.validation/1.16.0/jquery.validate.min.js"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/jquery.validation/1.16.0/additional-methods.min.js"></script>
|
<script src="https://cdn.jsdelivr.net/jquery.validation/1.16.0/additional-methods.min.js"></script>
|
||||||
<script>
|
<script>
|
||||||
|
function GetSelectedVal(ele) {
|
||||||
function GetSelectedVal(ele) {
|
|
||||||
|
|
||||||
var el = $(ele).closest('label').text();
|
var el = $(ele).closest('label').text();
|
||||||
var date1 = document.getElementById('<%=pickdate1.ClientID%>');
|
var date1 = document.getElementById('<%=pickdate1.ClientID%>');
|
||||||
var date2 = document.getElementById('<%=pickdate2.ClientID%>');
|
var date2 = document.getElementById('<%=pickdate2.ClientID%>');
|
||||||
|
|||||||
@@ -22,7 +22,6 @@ Partial Class Kundenbereich_Default
|
|||||||
normaltable.EnableViewState = True
|
normaltable.EnableViewState = True
|
||||||
datevon = Date.Parse(pickdate1.Text)
|
datevon = Date.Parse(pickdate1.Text)
|
||||||
datebis = Date.Parse(pickdate2.Text)
|
datebis = Date.Parse(pickdate2.Text)
|
||||||
|
|
||||||
Else
|
Else
|
||||||
normaltable.EnableViewState = True
|
normaltable.EnableViewState = True
|
||||||
Dim erster = New Date(Now().Year, Now().Month, 1)
|
Dim erster = New Date(Now().Year, Now().Month, 1)
|
||||||
@@ -32,10 +31,6 @@ Partial Class Kundenbereich_Default
|
|||||||
datevon = ersterdat
|
datevon = ersterdat
|
||||||
datebis = Date.Parse(Now().Day.ToString + "." + Now().Month.ToString + "." + Now().Year.ToString).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
|
pickdate2.Text = Date.Parse(Now().Day.ToString + "." + Now().Month.ToString + "." + Now().Year.ToString).ToString
|
||||||
|
|
||||||
rbt_Alle.Checked = True
|
|
||||||
rbt_Alle_M.Checked = True
|
|
||||||
|
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,8 @@
|
|||||||
|
|
||||||
void Application_Start(object sender, EventArgs e)
|
void Application_Start(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
// Code that runs on application startup
|
// Code, der beim Anwendungsstart ausgeführt wird
|
||||||
|
// Code that runs on application startup
|
||||||
ScriptManager.ScriptResourceMapping.AddDefinition("jquery",
|
ScriptManager.ScriptResourceMapping.AddDefinition("jquery",
|
||||||
new ScriptResourceDefinition
|
new ScriptResourceDefinition
|
||||||
{
|
{
|
||||||
@@ -13,6 +14,7 @@
|
|||||||
CdnPath = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.1.min.js",
|
CdnPath = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.1.min.js",
|
||||||
CdnDebugPath = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.1.js"
|
CdnDebugPath = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.1.js"
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Application_End(object sender, EventArgs e)
|
void Application_End(object sender, EventArgs e)
|
||||||
@@ -41,5 +43,6 @@
|
|||||||
// oder "SQLServer" festgelegt ist, wird das Ereignis nicht ausgelöst.
|
// oder "SQLServer" festgelegt ist, wird das Ereignis nicht ausgelöst.
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -29,6 +29,7 @@
|
|||||||
</authentication>
|
</authentication>
|
||||||
<sessionState mode="InProc" timeout="2880" cookieless="true" regenerateExpiredSessionId="true" compressionEnabled="true" />
|
<sessionState mode="InProc" timeout="2880" cookieless="true" regenerateExpiredSessionId="true" compressionEnabled="true" />
|
||||||
<httpRuntime requestValidationMode="2.0" targetFramework="4.7" />
|
<httpRuntime requestValidationMode="2.0" targetFramework="4.7" />
|
||||||
|
|
||||||
<pages validateRequest="false" controlRenderingCompatibilityVersion="4.0" />
|
<pages validateRequest="false" controlRenderingCompatibilityVersion="4.0" />
|
||||||
<!--<securityPolicy>
|
<!--<securityPolicy>
|
||||||
<trustLevel name="Full" policyFile="internal"/>
|
<trustLevel name="Full" policyFile="internal"/>
|
||||||
@@ -120,6 +121,8 @@
|
|||||||
</runtime>
|
</runtime>
|
||||||
<appSettings>
|
<appSettings>
|
||||||
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
|
<add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />
|
||||||
|
<add key="ClientValidationEnabled" value="true"/>
|
||||||
|
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
|
||||||
</appSettings>
|
</appSettings>
|
||||||
</configuration>
|
</configuration>
|
||||||
<!--ProjectGuid: 9b651bc0-361a-4f93-8118-dd8a986f2371-->
|
<!--ProjectGuid: 9b651bc0-361a-4f93-8118-dd8a986f2371-->
|
||||||
Reference in New Issue
Block a user