Re: Cannot run exe from asp.net Programming Web Development by Neil_brown001 Why your approach isn’t working What you're trying to do is mostly blocked by modern security rules — for good reasons. Here's the breakdown: Running a .exe on the server You can technically make the server launch an .exe file like Notepad, but: It will run in the background on the server, not visibly on the desktop. It needs special … Re: Cannot run exe from asp.net Programming Web Development by lennyli > Why your approach isn’t working > What you're trying to do is mostly blocked by modern security rules — for good reasons. Here's the breakdown: > > Running a .exe on the server > You can technically make the server launch an .exe file like Notepad, but: > > It will run in the background on the server, not visibly on… which language do i start leaning in 2025 Programming Software Development by silverrr_btc i have currently learning html only but its so boring do all of you guys had same problem and tell me which language do i start with html, me and my friend have made a site on html with little css and and js (thegeekinsights) and its going fine. can you create this? Re: which language do i start leaning in 2025 Programming Software Development by Dani It depends what you’d like to build. If a simple website, you can use HTML and CSS. Want some interactivity? Add JavaScript. Want to create more complex dynamic websites? You will need a backend language such as PHP and a database such as MySQL. I see you also tagged this topic c++. C++ is a popular language used for non-web related … Re: which language do i start leaning in 2025 Programming Software Development by rproffitt Think of a toolbox. Why buy tools you aren't going to use? ## Yup, everyone needs a 10 meter wide hole saw. Re: which language do i start leaning in 2025 Programming Software Development by retseaz77 Great question! In 2025, some of the most practical and trending languages to learn include: Spanish – widely spoken and super useful for travel and business Mandarin Chinese – huge global economy advantage French – still very relevant in international diplomacy and culture Python (if you meant programming) – still one of the top … Re: How to speed up my (WordPress) website? Digital Media Digital Marketing by silverrr_btc i have currently learning html only but its so boring do all of you guys had same problem and tell me which language do i start with html, me and my friend have made a site on html with little css and and js and its going fine. can you create this? Re: Cannot run exe from asp.net Programming Web Development by lennyli Why does the following code dont run and launch the exe I specify (eg, notepad.exe, or ribbons.scr)? <%@ Language="VBScript" %> <!DOCTYPE html> <html> <Body> <% Dim objShell Dim command Dim result ' Path to the executable command = "C:\… Re: What are some top-rated Bootstrap admin templates that not rely on Tailwind Programming Web Development by Dani Hello, DaniWeb actually uses Bootstrap, but I don’t use any preexisting templates. How much CSS experience do you have? Are you experienced with creating HTML code that uses css classes to piece together something unique? Bootstrap also has its own template store, if I recall correctly. Also, Tailwind is a competitor to Bootstrap, so I’m … Re: Cannot run exe from asp.net Programming Web Development by lennyli > I see pritaeas has answered so I'll move to the next stage of the discussion which is to ask what you need in your web site. > > For example there is an "online notepad" which does some basic notepad work. And there are many screensavers that run from a webpage with an example at whitescreen.online . > > You can … Best Ways to Print a High-Quality Book Cover Digital Media UI / UX Design by Zachary_6 print a book cover is a crucial step in the publishing process, whether you’re self-publishing or working with a print-on-demand service. The right paper type, finish (glossy vs. matte), and resolution can make a huge difference in the final product. What printing services do you recommend—KDP, IngramSpark, or local print shops? How do you ensure … Re: Best Ways to Print a High-Quality Book Cover Digital Media UI / UX Design by rproffitt "Never judge a book by its cover." - Unknown. And book sales are way way down. But here's the book I recently bought. It's title is: ***"The Subtle Art of Resistance: Lessons from Cats for Surviving Fascism"*** which is the problem of today. PDFs and E-books are where it's at. Re: The Impact of User Research on UX Design Digital Media UI / UX Design by john_111 I once visited a website where there were 20 rows, each composed of 20 identical small white squares (about the size of this --> HH ), with a tiny arrow in the bottom quarter corner to indicate they were links. But no text anywhere. Can you imagine how hard it would be to remember which button took you to which page, several days later? This… Re: The Impact of User Research on UX Design Digital Media UI / UX Design by Reverend Jim Read The Essentials of User Interface Design by Alan Cooper. Re: Where Can I Find Test Data (Names, Emails, etc.) for My Testing? Programming Web Development by Pelorus_1 Platforms like Mockaroo, Faker and GenerateData provide fake names, emails and more for testing purposes. You can easily create realistic sample data with these tools. Re: Where Can I Find Test Data (Names, Emails, etc.) for My Testing? Programming Web Development by gediminas.bukauskas.7 Look at Customers table in NorthWind database (https://en.wikiversity.org/wiki/Database_Examples/Northwind). Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani Hello, The easiest way to implement image lazy loading is by simply adding the `loading="lazy"` HTML attribute to `<img>` image tags. That will not load the image until it is about to come into view in the web browser as the user scrolls down the page. Something else that we do here at DaniWeb is to use the `async` and `defer`… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon Dani as you wrote "Speed index" is supposed to be about the visible part of a web page - ATF. But because in Lighthouse I kept getting that loading="lazy" method had worse "Speed index" I created two simplified html pages for test. I gave a lot of height of what "Above the fold" is supposed to be , 940px … Re: send checkbox to email using phpmailer Programming Web Development by Dani I would begin by making sure that you sanitize input passed in via $_POST. This ensures that someone doesn't pass in something like `$POST['oneway'] = '</p>Foo!<strong>Blah</strong>` and completely screw up your HTML, or, worse yet, inject Javascript into your HTML. <p><b>One Way:</b> ' . … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon As I wrote in a previous post, I believe that the way loading="lazy" is being implemented in browsers makes it almost unusable. Chromium-based browsers have a really high distance from viewport threshold, loading many images simultaneously upon page entry, while Firefox has a really low threshold, which means the user experience is awful.… Re: How would we poison AI web crawls? Hardware and Software Information Security by rproffitt I asked around and it appears we can affect change. The immigrant reporting hotline was flooded with reports about Elon Musk so that line shut down. As to AI crawlers the work to poison the AIs is well underway. Examples follow. > Here is a curated list of strategies, offensive methods, and tactics for (algorithmic) sabotage, disruption, … Re: Which Python PDF writing library is best? Digital Media UI / UX Design by Anna_46 PDFKit is a solid choice for generating PDFs, but there are other great alternatives depending on your use case **ReportLab** – Highly powerful, great for generating complex PDFs with tables, charts, and images. **WeasyPrint** – Converts HTML and CSS to PDF, ideal for web-based reports. **PyMuPDF** (fitz) – Lightweight and fast for both PDF … Re: Contact form does not working Programming Web Development by Dani > Firstly, I'd suggest you edit your post to remove your real email address from the code. I have replaced their email address with a dummy email. > Sanitise your subject and/or message. You can't in general feed whatever was typed into your dialog directly into mail. Salem is referring to passing each of those variables in … Re: Escape in-app browser? Programming Web Development by Dani rproffitt, alexxx does not have the ability to edit raw HTML within his Instagram bio. Instead, the link has to point to a URL that uses deep linking to redirect the final destination URL to open in Safari. I am not familiar enough with mobile development to know how to do this, but, yes, it does involve writing code. I also want to point out … Re: Hi everyone, I'm Jason_70 Community Center Say Hello! by Reverend Jim I like movies that don't insult my intelligence. Aside from the frequent spoilers I find that the [Pitch Meeting](https://www.youtube.com/results?search_query=pitch+meeting) videos do a great job of pointing out the ways in which modern action movies prioritize action and spectacle over anything resembling good writing. [10 Ways Star Trek Just … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon The loading="lazy" HTML attribute-value pair was introduced in 2019–2020, so I would guess it will be safe to use after 2030–2035, except if you don't care about internet visitors and are targeting an intranet of a company where you control the browsers and their versions. Of course, lazy loading impacts SEO. Modern SEO has more to do … Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani > The loading="lazy" HTML attribute-value pair was introduced in 2019–2020, so I would guess it will be safe to use after 2030–2035, except if you don't care about internet visitors and are targeting an intranet of a company where you control the browsers and their versions. According to [Can I Use](https://caniuse.com/?search=… Re: How would we poison AI web crawls? Hardware and Software Information Security by Dani This just showed up for me in [Search Engine Roundtable](https://www.seroundtable.com/google-sued-ai-overviews-38958.html). Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani > Lighthouse metrics (which really affects SEO) Please correct me if I'm wrong, but I'm fairly confident that Lighthouse metrics do not affect SEO. Lighthouse is just a tool that Google offers to SEOs to be able to offer actionable page improvements. In reality, it's real world performance data from Chrome users that factors into a site's SEO…