Relative Content

Tag Archive for asp.netwebforms

Endpoint Timeout when accessing endpoint in ASP.NET Web Forms

I need to retrieve a JWT token from a webservice for further communication with their party. I can access the endpoint through Postman/Console Application yet i can’t inside a WebForm project. Should I change something in the Web.Config file?

Difficulty Maintaining Form Data Structure Across Postbacks in ASP.NET WebForms

how are you? I am facing an issue. I am creating a form that contains multiple fields, some related to tables. When I submit the form, I need to insert the primary data into the master table and additional data into the children table. The children table may have multiple rows. I implemented this using JavaScript, but when I fill the data in multiple rows and for some reason, like a text change in the form, there’s a postback, the multiple rows become one field separated by commas! How can I handle this to keep them in multiple rows? Also, how can I display the multiple rows when I need to update all of them in the ASP.NET WebForms project?