WebForms Core Organization on GitHub
Elanat Framework

Elanat Framework @elanatframework

About: Elanat Team

Joined:
Jun 21, 2023

WebForms Core Organization on GitHub

Publish Date: Jun 26
0 0

We at the Elanat team are proud to announce that we have created a new organization on GitHub to better organize our WebForms Core technology.

The WebForms Core organization is available at the following link:
https://github.com/webforms-core

WebForms Core is a revolution in the web that simplifies web development by manipulating HTML entirely on the server. Using WebForms Core technology is the easiest way to develop web-based systems.

Note: WebForms Core technology is open source and is provided under the MIT license.

To use this technology, you just need to include the WebFormsJS library in the head of your HTML page and use the WebForms class on the server side.

Example to Use WebForms Core:

Step1: Add WebFormsJS

Get the WebFormsJS library from the following repository:

https://github.com/webforms-core/Web_forms

Then add it to the head section of your HTML page.

HTML

<!DOCTYPE html>
<html>
<head>
    <title>WebForms Core</title>
+   <script type="text/javascript" src="/script/web-forms.js"></script>
</head>
<body>
...
Enter fullscreen mode Exit fullscreen mode

Step2: Add WebForms Class

Depending on the programming language on the server, get the desired WebForms class from the following repository:

https://github.com/webforms-core/Web_forms_classes

Then add it to the web project you are developing.

Call WebForms class in server

WebForms form = new WebForms();

form.SetBackgroundColor("<body>", "lightgreen");
form.Delete("<p>2");

Write(form.Response());
Enter fullscreen mode Exit fullscreen mode

Call the WebForms class on the server as per the code above and do whatever you want with the HTML pages! Add tags, remove tags, add attributes, add events to tags, etc.

Comments 0 total

    Add comment