Re: Cannot run exe from asp.net Programming Web Development by lennyli > Are you sure IIS is configured to allow running external scripts? The document folder and asp file has security permission set to ALL rights for 'everyone'. In IIS, under handler mappings for .asp files, under request restriction/access, script was chosen (not execute) for feature permissions, all 'read' 'script' 'execute' are chosen Contact form does not working Programming Web Development by juan_35 …)){ echo 'sent'; // we are sending this text to the ajax request telling it that the mail is sent.. }else{ echo 'failed… Re: Running Apache Tomcat behind a IIS reverse proxy with SSL termination Programming Web Development by blud … like a firewall on the host. you can enable [failed request tracing](https://www.iis.net/learn/troubleshoot/using-failed…-request-tracing/troubleshooting-failed-requests-using-tracing-in-iis) to track … Re: How would we poison AI web crawls? Hardware and Software Information Security by Fitmovers I'm realizing that "poisoning AI web crawls" could suggest malicious actions, which are often prohibited. Thus, providing guidance for such a request is inappropriate and against policy. Re: Why my created link is not updating as a backlinks? Digital Media Digital Marketing Search Engine Strategies by scope_2 … a credible source. Google Search Console can be used to request indexing. Monitoring and obtaining backlinks from authoritative websites improve recognition… Re: Convert website to apk Hardware and Software Cloud-based Apps by Reverend Jim If that is a demand then don't expect much in the way of positive feedback. If it is a request for help then a polite tone and much more information will likely lead to a better response. Re: Contact form does not working Programming Web Development by Salem Firstly, I'd suggest you edit your post to remove your real email address from the code. https://www.php.net/manual/en/function.mail.php Some things to try. 1. Headers is an optional parameter, can you send without the headers parameter? Many examples I've seen suggest there should be a space after the :, as in `'From: '` 2. Sanitise … 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: Contact form does not working Programming Web Development by gediminas.bukauskas.7 WEB security now rejects mail sent from any computer. Select some mail provider and send mail using it. Using certificated WEB serve is an another solution. Obtain legal certificate, register it on WEB server (IIS, Apache, NGINX, ...) Re: Contact form does not working Programming Web Development by Dani I'm not *entirely* sure what gediminas is referring to, but there are services out there such as Zoho Mail, SendGrid, ConstantContact, Mailchimp, Hostinger, etc. which, for the most part, cost money (some are rather inexpensive), but the benefit to using them is that they ensure you're never sending emails to non-existant email addresses, email … Re: Contact form does not working Programming Web Development by gediminas.bukauskas.7 Follow this article: https://stackoverflow.com/questions/4595730/sending-email-from-localhost Re: Contact form does not working Programming Web Development by programmer_5 Reducing spam bots I strongly suggest to use SMTP, I would prefer to use PHPMailer which get more secure and handle professionally templates. Re: Contact form does not working Programming Web Development by gediminas.bukauskas.7 It was a time when anybody could to send a mail from Apache (or IIS) installed on local computer but internet spammers have used that feature for evil purposes. Now you can send emails from an officially registered server only. Even if you manage to send a letter somehow it will not reach the recipient or will be automatically will be placed into … Re: Contact form does not working Programming Web Development by webmaker Apart from doing some protection to your code, it will more than likely be your ISP not allowing the mail function to work. We have had to get an email acct with permissions allocated to each websites form by our providers. Re: Contact form does not working Programming Web Development by Biiim Emailing became more restrictive in the last year, so when you have a PHP server with no emailing setup the emails often fail completely now as there is so much wasted bandwidth on spam emails that these get turned down instantly. I solved it on my hosting with the [PHPmailer](https://github.com/PHPMailer/PHPMailer) package, it's maybe a bit of … Re: Contact form does not working Programming Web Development by Dani > Emailing became more restrictive in the last year Are you referring to SPF, DKIM, and DMARC? Re: Contact form does not working Programming Web Development by Biiim Damn, you caught me out on that! I went generalized cause I forgot what it was that happened. But I dug it up: [Google Search:Gmail email restriction in Feb 2024](https://www.google.com/search?q=gmail+restriction+on+emailing+in+february+2024) Is what I was thinking of - but I think my web hosting providors were also complaining about my badly… Re: Request.Form["value"] to get and to set ? Programming Web Development by kvprajapati … Flags); FieldInfo FormField = Request.GetType().GetField("_form", Flags); WritableMethod.Invoke(Request.Form, null); Request.Form["no"] …= "100"; FormField.SetValue(Request, Request.Form); ReadOnlyMethod.Invoke(Request.Form, null); Response.Write("<br… Request empty in JSP ComboBox? Programming Web Development by suncica2222 …; ) == "Predmeti") session.setAttribute("kombo", request.getParameter( "cmbx" )); */ if(b1.getKombo() != …vratiPredmete(); } // out.print("<h1>"+ request.getParameter("drop1") +"</h1> </… Request Dispatcher Programming Web Development by mith_cool … Addtocart servlet. AuthenticationServlet Code: [CODE] RequestDispatcher rd= request.getRequestDispatcher("/Addtocart"); rd.forward(request, response); response.sendRedirect("Addtocart"); [/CODE… Request Query String and Display of SQL data Programming Web Development by BilalAKhan …I am using Response.Direct in the search page and Request.QueryString on the result page. The search page code is…[/CODE] Now note that if I do not enter the Request.QueryString code and give only binding code, it works perfectly… fine. Note another thing that I have tested the Request.QueryString code by putting the labels (You can see … Re: Request Dispatcher Programming Web Development by Rameshwar Soni [CODE]RequestDispatcher rd= request.getRequestDispatcher("/Addtocart");[/CODE] I think it should have been [CODE]RequestDispatcher rd= request.getRequestDispatcher("Addtocart");[/CODE] Request.QueryString Substring problem Programming Web Development by ammwebmaster2 …;Verdana, Arial, Helvetica, sans-serif"><%Request.QueryString["donor"].ToString().Substring(1,9)%><…gt; </td> <td><%(Request.QueryString("donor").ToString().Substring(10,4))%>&…" type="hidden" value="<%Request.QueryString("donor").ToString().Substring(1,9)%>… Request.php code error..Help plz! Programming Web Development by kclove …having a problem with my request code. I need to send a request to a friend and …never. I have attached my login and request codes along with the users and friends … header ("location:index.php"); } ?> // my request page <?php session_start(); friends2ID = $_GET["userID"]; … Re: Request Form not Working: foreach() error message Programming Web Development by diafol …tutors... var mySerializedData = ...; // get the relevant fields from form var request = $.ajax({url: "folder/tutors.php", dataType: "…dt ) { $("#tutorlist").html( dt ); }); request.fail(function( jqXHR, textStatus ) { alert( "Request failed: " + textStatus ); }); In the tutors.php… Re: Request.QueryString Substring problem Programming Web Development by Thirusha … this: [code]<%[COLOR="Red"]=[/COLOR]Request.QueryString["donor"].ToString().Substring(1,9)%>…quot; type="hidden" value="<%Request.QueryString("donor").ToString().Substring(1,9)%>…donor" type="hidden"value='<%=Request.QueryString("donor").ToString().Substring(1,9)%>… Request and Respond doesn't exist in new .NET framework.. Programming Software Development by sniper1983 … "My" doesn't support request and response on cookies anymore. ex. My.Request.Cookies("TestEmail") I have succeeded… have not been able to find the new way for Request. Can somebody help me doing this? Re: Request and Respond doesn't exist in new .NET framework.. Programming Software Development by sniper1983 …You should find everything you need in them (and in Request namespaces of cource).[/QUOTE] Thank you for your help. I…might use it like this: System.Web.HttpContext.Current.Request.Cookies.Item("Role").Value() instead of My….Request.Cookies("Role").Value() I just don't… request scope Programming Web Development by hajjo Hello all I am using the request scope. I have parent window, which opens a child window … click. Am using window.open That child window opened is request scope. Problem is, on that child window there is a… value. On every button click its considering it a new request. whats the probleM?? Its not normal. I am thinking of… request.getParameter return null value Programming Web Development by sagar2dumbre … { alert ("Browser does not support HTTP Request") return } var url="wl_do.jsp… <body> <% String area=request.getParameter("area_id"); response.setContentType("text… i write [CODE]System.out.println(request.getParameter("emp")); [/CODE] …