I'm using a pre-compiled ASP.NET 2.0 site (i.e., copied to the server using the "Build->Publish Web Site" feature in Visual Studio 2005). I catch and log all errors which are usually quite detailed, but lately I've been getting the following error with no other information:
Could not load the assembly
'App-Web-rp2eml-j'. Make sure ...
I inside my httpdocs(www), i created a folder called "bin", i put an "test.html" just to display "Hello Stackoverflow", but when I go access the page, i.e http://domain.com/bin/test.html, it says Page Cannot Be Found. But when I move the file to test folder, it display what it should be. Why?
...
We have a web application that's deployed to many websites with only frontend changes, the shared backend portion has it's DLL in the GAC so we only have to update that one dll and all the sites get the update.
Is there a way to override the GAC with a DLL in the /bin folder to test out new features before they get released?
...
Hi All,
I have an ASP.Net project using AJAX that I am putting on a server behind a reverse proxy.
Lets say my project is located on the server here:
C:\inetpub\wwwroot\proj\app
So the bin folder should be here:
C:\inetpub\wwwroot\proj\app\Bin
The reverse proxy causes the server to automatically look for the Bin folder for the proj...
Is there an environment variable pointing to the WiX bin directory path? I want to use torch in the post-build event of my project, but I cannot find this variable. I cannot hard-code the path because the wixproj is shared by group.
Variables like $(WixTargetsPath) and $(WixTasksPath) are for MSBuild. These are not what I want.
Thanks!...
Hello,
I have a dll, call it dllA and dllA references dllB. When I put dllA in the bin folder of my asp.net application, and call a method in dllA that references dllB, the asp.net application throws an error saying can't find dllB. I have to add dllB to the asp.net bin folder as well. My question is why, if I'm only referencing classes...
Hi everybody,
We are developing an English-Turkish dictionary website.
"Bin" means "Thousand" in Turkish. So when a user asks for http://tureng.com/search/bin we should show her the meaning of "Bin" in English. However, since /bin is a special directory, she got a 404.
Any ideas to solve it?
Thanks.
...
Where on my computer would I be able to find the last date that the recycle bin was last emptied, would such an event be stored in the windows system logs? and if so where?
Thanks :)
...
I have a solution made up of multiple projects which have various dependencies on each other. When I build the project/solution, it creates the DLL assembly files in the Project\bin folder(s) as it should. But when I run the program, it copies everything to the temporary files folder and runs it from there:
C:\WINDOWS\Microsoft.NET...
Hello,
My project in c# cantains dataGridView and i have a object contain data.
public class Data
{
public List list {get;set;}
}
the data is init at program start up and the length of list can change.
i want to bind the gridView to object that when gridView show each columns in gridview is bound to list in data object like this:...
Hi,
I'm receiving from the socket a MAC address in this format:
0024e865a023 (hex converted from binary with received-string.encode("hex"))
I would like to convert it to a user readable format like this :
00-24-e8-65-a0-23
Any easy way to do so ?
Thanks
...
Given a set of items, each with a value, determine the number of each item to include in a collection so that the total value is less than or equal to given limit and the total value is as large as possible.
Example:
Product A = 4
Product B = 3
Product C = 2
Product D = 5
If Total Capacity = 10.5 , then the combination of B,C,D will...
How can I get the bin path of php from PHP? I saw it in phpinfo(); but I need another method that gets it in linux and windows systems.
...
working with iis7.
project is in Integrated Pipelinemodus
Application Pool is : DefaultAppPool
have System.Web.Mvc.dll, System.Web.Routing.dll, System.Web.Abstraction.dll in bin folder of project.
i cant run aspx pages, becouse i need to configurate something in iis7 to use dll from bin folder.
please help
p.s.
seems like it has to ...