The solution was to go in the SSL/TLS settings on that domain on Cloudflare, and switch the encryption mode from Flexible (the default) to Full.
Devamı → WEB CONFIG DOSYASINA EKLİYORUZ;
Devamı →
<system.webServer>
<httpErrors errorMode="Custom" existingResponse="Replace">
<error statusCode="404" path="/" responseMode="Redirect"/>
</httpErrors>
</system.webServer>
This program is blocked by group policy. For more information, contact your system administrator]
[ExternalException (0x80004005): Cannot execute a program. The command being executed was "C:\Inetpub\vhosts\xxx\httpdocs\bin\roslyn\csc.exe" /shared /keepalive:"10" /noconfig /fullpaths @"C:\Inetpub\vhosts\xxx\tmp\root\59e404a3\61b152fc\bwzuqipf.cmdline".]
WEBCONFIG;
<system.codedom>
<!--remove all the contents here-->
</system.codedom>
Devamı →
So I used "Turn Windows Features On/Off" dialog to install both IIS and ASP.NET 4.6.
Note that IIS have to be installed before .NET.
Bu yüzden hem IIS hem de ASP.NET 4.6'yı yüklemek için "Windows Özelliklerini Aç/Kapat" iletişim kutusunu kullandım. IIS'nin .NET'ten önce yüklenmesi gerektiğini unutmayın.
Kaynak: https://serverfault.com/questions/252622/asp-net-state-service-missing-from-services
Devamı →using method 'mysql_native_password' failed with message: Access denied for user , MySqlException: Access denied for user
Yukarıdaki hatayı alıyorsanız ve Tüm bilgilerin doğru olduğundan eminseniz.
C Panele giriş Yapıp;
Devamı →Fancybox 5 Close and reload
Aşağıdaki Java script kodu işimizi görecektir.
Devamı →
1.Aşama
Devamı →var chkEhliyetOlanAraclarValues = [];
$('input[name="chkEhliyetOlanAraclar"]:checked').each(function (index, elem) {
chkEhliyetOlanAraclarValues.push($(elem).val());
});
Static redirect kodumuz;
Devamı →<location path="pdf/sugarcocktailbarmenu.pdf">
<system.webServer>
<httpRedirect enabled="true" destination="https://menu.sugarcoctailbar.com" httpResponseStatus="Permanent" />
</system.webServer>
</location>
HTML BÖLÜMÜ;
<div class="col-md-12 ebr74">
<label>Cinsiyet<span class="text-danger">*</span></label><br />
<input type="radio" name="cinsiyet" value="Kadın"><label>Kadın</label><br>
<input type="radio" name="cinsiyet" value="Erkek"><label>Erkek</label><br>
</div>
Doğrulama İçin Kullanılacak Fonksiyonumuz.
if (!radioCheck('cinsiyet')) { alert('Cinsiyet Seçiniz'); return false; }
Aşağıdaki Fonksiyonumuz;Devamı →
LINQ to Entities does not recognize the method ' ' method, and this method cannot be translated into a store expression hatası Linq sorgusunda değişken bazlı kullanmanız gerektiğini bildirir.
Hata alan kodumuz;
Where(p => p.pid == dty.pid && p.kat == kt2[katIndex + 1].konu
Hatayı çözmek için ;
Devamı →C#,MVC,MSSQL,Windows Forms