Questions tagged [web]

Do not use this tag. For questions related to an aspect of the world wide web, use a more specific tag for it, such as [uri], [html], [http] or [w3c].

The World Wide Web (abbreviated as WWW or W3, and commonly known as "the Web") is a technology that connects various kinds of systems with interlinked hypertext documents accessed using networking protocols.

The credit of inventing the World Wide Web goes to many researchers, but it was Tim Berners-Lee also known as TimBL who not only proposed the idea of WWW (at CERN in 1989) but also gave his full contribution in development of 3 very significant technologies:

  1. Invention of URL (Universal Resource Locator) and URI (Universal Resource Identifier).
  2. HyperText Markup Language (HTML)
  3. HTTP (HyperText Transfer Protocol), a protocol for transferring HTML

The World Wide Web is an interconnected network which works as a bridge not only between two terminal ends (Web browser & Web server) but also to connect client machines to database servers with controlled access.

With a Web browser (client), one can view web pages that may contain text, images, videos, and other multimedia, and navigate between them via hyperlinks. The default port for requests and responses via HTTP protocol is port 80.

A web server, on other hand, receives the client's requests and generates the proper response for it. This includes an HTTP status code (like 200 Ok or 404 Not Found), a list of HTTP headers (which control things like response format and cookies), and the response body (like HTML content).

47790 questions
5
votes
1 answer

Send information from one page to another with OpenSSO/AM and the get method

I have a web site protected by an OpenAm Server and accessing pages, after authentication, works fine. But when I try to redirect to a page and pass information with the get method, I obtain a forbidden access message. Is there a way to pass my…
Mike
5
votes
7 answers

Error: Not found: 'dart:ffi' with flutter web

Read carefully before reporting. My flutter web project was working perfectly fine. A few hours later, it started complaining about 'dart:ffi: which i didn't even import. I saw similar questions but none of them were in my case. I tried everything I…
Mamoudou Kane
  • 141
  • 2
  • 7
5
votes
2 answers

Is there anyway to provide a clickable link on a HTML page to save a contact to a mobile phone?

I'm looking to allow my users to my mobile web click on a link to straight away add my contact into their phone (iphone/android). I know there's a tel scheme available and I'm currently using that on top. Is there anyway to provide First Name, Last…
David C
  • 3,659
  • 5
  • 34
  • 46
5
votes
0 answers

How to make PWA icon fit for both Windows and macOS?

I created the PWA icon for my web app following Apple's app icon design template. It looks good on Dock of macOS, but looks a bit small on toollbar of Windows: How can I make the icon fit for both platform? Or can I configure different icon for…
Mashiro
  • 1,032
  • 1
  • 12
  • 24
5
votes
2 answers

Filling in a web page with Delphi using TWebBrowser

I use Delphi 7 on Vista. So far, I have implemented a simple browser (using TWebBrowser) but I would like to automatically enter information when the web page asks for it. For example, I want to tell my app to go to Google, detect the Search field,…
5
votes
1 answer

IIS Express in visual studio 2017 crashes when debugging app and selecting file input

I have a form with a file field. In VS 2017 the upload doesn’t work and it returns the error: "The program '[19000] iisexpress.exe' has exited with code 4294967295 (0xffffffff)." The upload operation when run from kills IIS Express, it basically…
5
votes
0 answers

DevTools and Webpack with local overrides

Using the Chromium browser (version 99.0.4844.0) I visit a website and open DevTools (F12), then I go to "Sources", "Overrides", paste a folder there. Then I can make changes to files under "Sources" and "Page", which are also displayed after a page…
tildebox
  • 53
  • 4
5
votes
2 answers

offline mobile website

Is it possible to have a mobile website that can still function if there's no internet connection? The user should still be able to use the website (if he has visited that page before), see the data (that was loaded before), add new stuff (cache…
Aipie
  • 105
  • 4
5
votes
1 answer

Streaming webcam data to a webpage

My intention: Stream webcam feed to a webpage. Have buttons that talk to a Python program. I'm planning on using OpenTLD (AKA Predator) to get information about a moving speaker via webcam. Then I will send the coordinates to Python, which will…
Joel Garboden
  • 71
  • 1
  • 9
5
votes
4 answers

is there any role of browser cookies for static html site?

if yes then what we can do with cookies?
Jitendra Vyas
  • 148,487
  • 229
  • 573
  • 852
5
votes
1 answer
5
votes
3 answers

Dynamodb local web shell does not load

I am running DynamoDB locally using the instructions here. To remove potential docker networking issues I am using the "Download Locally" version of the instructions. Before running dynamo locally I run aws configure to set some fake values for AWS…
5
votes
1 answer

yellow pages website database design ( take a look )

I'm designing a yellow pages web site , i just finished the data base design and if you can i need some reviews about it. country ID, name, flagImage, creatDate city countryID, name, image, creatDate companyType id, city_id, name, image,…
5
votes
1 answer

How to create a video thumbnail in flutter web

For performance reasons I've been trying to create a thumbnail for a list of videos I upload to the Firebase Firestore. I thought of different ways to solve this. But I haven't found an actual working solution. The one solution that gave me the most…
Neifen
  • 2,546
  • 3
  • 19
  • 31
5
votes
3 answers

How to use useEffect hook with the dependency list as a specific field in an array of objects?

Let's say I have an array like this: [ { country: '', 'city/province': '', street: '' }, { country: '', 'city/province': '', street: '' } ] How do I have the useEffect() hook run every time the value of the 'country'…
user13841165
1 2 3
99
100