https://github.com/luisgbr1el/medlist-csharp
Code that asks info about doctors and at the end, creates a .html "webpage" with a <table> listing all data.
https://github.com/luisgbr1el/medlist-csharp
csharp css html list utility
Last synced: about 1 month ago
JSON representation
Code that asks info about doctors and at the end, creates a .html "webpage" with a <table> listing all data.
- Host: GitHub
- URL: https://github.com/luisgbr1el/medlist-csharp
- Owner: luisgbr1el
- License: mit
- Created: 2022-03-04T12:56:33.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-04T16:16:33.000Z (about 3 years ago)
- Last Synced: 2025-01-24T20:15:40.678Z (3 months ago)
- Topics: csharp, css, html, list, utility
- Language: C#
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# medlist-csharp
Code that asks info about doctors and at the end, creates a `.html` "webpage" with a `` listing all data.### Resources
- C#
- Some HTML in C# code### Default path
The default path to the code is `C:\temp\`.### Default file name
The default file name to the `.html` file is `summaryDoctors_ddMMyyyy_HHmmss.html`, generated with the following code:
```c#
string path = "C:\\temp";
string fileName = "\\summaryDoctors";
DateTime datetime = DateTime.Now;string fullName = path + fileName + "_" + datetime.ToString("ddMMyyyy_HHmmss") + ".html";
```
### Generated webpage
