Änderungen
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
<link rel="shortcut icon" href="../images/Icons/favicon/favicon.ico" />
|
||||
<!-- <link rel="stylesheet" type="text/css" href="css/edit_main.css"> -->
|
||||
<script src="js/netzwerk.js" type="text/javascript"></script>
|
||||
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous" />
|
||||
<link rel="stylesheet" type="text/css" href="../css/main.css" />
|
||||
@@ -38,13 +38,14 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="float-end" style="align-content: center; margin-top: 6px">
|
||||
<label id="lbl_ClientNr" style="color: #fff; font-weight: bold; font-size: 19px">Client-Nr.:</label>
|
||||
<input id="txt_ClientNr" readonly="readonly" runat="server" style="margin-left: 10px" />
|
||||
<div class="float-end" style="align-content: center; margin-top: 4px">
|
||||
<label id="lbl_ClientNr" style="color: #fff; font-weight: bold; font-size: 19px">Client-Nr.:</label>
|
||||
<input id="txt_ClientNr" readonly="readonly" runat="server" style="margin-left: 10px" value="" />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card" style="width: 855px; height: 250px">
|
||||
<div class="card" style="width: 855px; height: 250px">l
|
||||
<div class="card-body">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
@@ -115,5 +116,21 @@
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<!--Below is the reference for JQuery as it will be needed for the ajax call and table creation-->
|
||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
function getParamValue(paramName) {
|
||||
var url = window.location.search.substring(1); //get rid of "?" in querystring
|
||||
var qArray = url.split('&'); //get key-value pairs
|
||||
for (var i = 0; i < qArray.length; i++) {
|
||||
var pArr = qArray[i].split('='); //split key and value
|
||||
if (pArr[0] == paramName)
|
||||
return pArr[1]; //return value
|
||||
}
|
||||
}
|
||||
var param1 = getParamValue('Kennzeichen');
|
||||
$('txt_ClientNr').val(param1);
|
||||
alert(param1)
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
|
||||
Partial Class Customers_Default3
|
||||
Inherits System.Web.UI.Page
|
||||
Sub Page_Load(sender As Object, Eventarg As EventArgs)
|
||||
|
||||
End Sub
|
||||
End Class
|
||||
|
||||
Reference in New Issue
Block a user