Posts

Showing posts from November, 2015

[Error] : Using HREF Error The resource cannot be found. In ASP.NET

The resource cannot be found. Description:  HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly. Jika kita menggunakan Tag Href di dalam page ASP.NET dan telah masuk ke dalam sub folder maka error " [Error] : Using HREF Error The resource cannot be found. In ASP.NET Solusi untuk masalah diatas adalah menambahkan attribut runat="server" dan menambahkan slash ("~") di awal link. Recommended Reading: Page has one or more controls that do not correspond with controls in the Master Page Seperti contoh dibawah ini. Before : <a href="forms/Monitoring.aspx">Monitoring</a> After : <a href="~/forms/Monitoring.aspx" runat="server">Monitoring</a> Semoga posting artikel " [Error] : Using HREF Error The resource cannot be found.

Sample Windows Authentication in ASP.NET

Image
Pada posting kali ini akan dibahas tentang "Sample Windows Authentication in ASP.NET". Hal yang pelu disetting adalah : 1. Web Config 2. Global.asax 3. Account User Akun user yang akan diberikan akses dibuatkan didalam server web server seperti gambar dibawah ini : Baca : ERROR 80040154 Retreiving COM Class Factory Semoga posting tentang  "Sample Windows Authentication in ASP.NET" in bermanfaat. Salam,