skip to Main Content

How to get the property's name of an object using jQuery?

this is my form: <form id="inventoryForm" action="/ManderalMatrix/AddManderalInventory" class="reactiveToButton"> <div class="row" style="margin-top: 18px"> <div class="col-md-3"> <div class="form-group"> <label> Size of punch (mm) <span style="color:red">*</span> </label> <input name="PunchSize" id="PunchSize" type="text" class="form-control inventoryInput objectInput" /> </div> </div> <div class="col-md-3"> <div class="form-group"> <label> Shape…

VIEW QUESTION

Azure queue trigger with custom connection name

I have an Azure functions application (.net8, isolated model). There is a queue trigger working pretty good with internal application storage. It looks like this: [Function(nameof(InnerStorageTrigger))] public void InnerStorageTrigger([QueueTrigger("test-queue-inner")] QueueMessage message) { _logger.LogInformation($"Inner message: {message.MessageText}"); } But I also need…

VIEW QUESTION
Back To Top
Search