bin

How to tell what page a dll refers to in precompiled ASP.NET site

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 ...

Why files under bin folder cannot be found?

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? ...

Dll in both the bin and the gac, which one gets used?

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? ...

Define the path to the "Bin" folder

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...

Variable for WiX bin directory path?

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!...

Asp.Net Dependency question

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...

ASP.NET MVC Routing, "bin" as a route parameter value

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. ...

Find Date Recycle Bin Was Last Emptied

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 :) ...

How do you make Visual Studio run assembly files (dependencies) from the bin?

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...

Data Grid View -- binding columns to list

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:...

Convert Hexadecimal MAC address to user readable formating (Python)

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 ...

Algorithm to determine best combinations - Bin Packing

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 to get the path of the PHP BIN from PHP?

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. ...

how to upload System.Web.MVC.dll from bin in iis7?

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 ...