Configuration :: How To Cenvert .dll To Source Code
Feb 22, 2011
We have some problem in develepment server so we didnt recover the our project source code (asp.net 1.x with C#). now i have downloaded the files from the production server but the production server doesnt have the C# source code. its contain only the .dll file (singe dll file for all the aspx.cs and .cs classes) and design files. we need to update some functionalities in my project,so can i get .aspx.cs and .cs clasess from the project .dll? or how can i modify the clacess without source(.cs,.aspx.cs)?
View 1 Replies
Similar Messages:
Sep 22, 2010
If I deploy my ASP.NET project to a shared server web hosting, then is there a way to secure my source files so that the provider will not be able to access the source?. For example, the provider of my web hosting may download my files and then he will be able to get access to all my source.
View 9 Replies
Jan 31, 2011
How is this achieved so that my source code is protected as put on a server other people have access to?
View 6 Replies
Feb 2, 2011
I want to know that how can i secure my project dll from decompiler.
There are some methods available like reflactor and obfuscator through which we can protect dll from decompilation.
So how can i use that and is it really secure or not?
View 4 Replies
Apr 8, 2010
Our company has developed its own CMS system and there is a requirement that customers may purchase the source code for this system but only to be used for the one application (1 domain).My question is, is it possible to give them the source code but prevent them from reusing it to run another site (domain) for it.
My first thought was to have some license checking mechanism or have an uncompiled dll that checks the domain but obviously if they have the source code they can simply remove this code or checks.
View 1 Replies
Nov 1, 2010
how to make my source code to display on one line instead of multiple in source view. The display drives me batty when I'm trying to find something and I would prefer to display across the page instead of multiple lines down the page.
View 2 Replies
Sep 6, 2010
asp.net open source Lead management system with source code.
View 9 Replies
Mar 3, 2010
I want to call a function present in code behind from front page (html : source code)
i want to use like this:
Source code
<a href='<%# linkAlpha("B").ToString()) %>' title="B" id="B_List" runat = "server">B</a>
Code Behind
protected string linkAlpha(string value)
{
// /market-research/<%#Eval("customname")%>/
string str = "";
if (Request.Url.DnsSafeHost == "localhost")
{ // /market-reports/<%# Eval("customname")%>/
str = "Alpha_Category.aspx?q=" + value.ToString().Trim();
// Response.Redirect("Alpha_Category.aspx?q=" + value.ToString().Trim());
}
else
{
// str = "/market-reports/" + value.ToString().Trim() + "/";
str = "/Alpha_Category.aspx?q=" + value.ToString().Trim();
}
return str;
}
View 2 Replies
Nov 11, 2010
Here is what im trying to do I want to, from my c# code-behind, get the code between 2 <asp:Content> tags that are located in one of my .apsx pages.
View 8 Replies
Jan 19, 2011
Web service error response (code/message etc) would you store it in a database? or would you keep the error response in a method.By the time I'm done with this, there will be hundreds of error response, maybe in the future, thousands? (I dont know yet, depends how large this web service grows).EDIT: error response is the response returned back to the application via the web service, (not to be confused with error logging).
View 1 Replies
Jan 11, 2011
any ERP in asp.net with source code.i need to customize it .
View 1 Replies
Oct 8, 2010
I am doing SOA architecture and the data base is in service side ie.within the project(website 7)
how can i can mention relative path for the data source ?
OleDbConnection aConnection = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\sathiyabalu\My Documents\Visual Studio 2005\WebSites\WebSite7\App_Data\alumni_member.mdb");
View 1 Replies
Mar 11, 2010
I have inherited a VS 2008 project that hosts 5 services in a web directory and am attempting to add a new service. The existing services all work well, and my service is working except when I tried to add authentication like the existing services have using the membership.ValidateUser method. The SOAP request runs for ~18 seconds, and an exception (listed in full below) is thrown with a "network-related or instance-specific error". Other services validate the user, run some code and return in about 500 milliseconds, I think it is safe to assume I am hitting a timeout.
What makes this odd is that the new service lives in the same web application directory as the old services. It uses the same web.config file. I had been intensely reading posts and documentation related to the "network-related or instance specific error" until I noticed the Data Source in the connection string was not a name I am familiar with.
I changed the Data Source to be the name of the machine where the services run (thereis a database called membership on there), and I instantly got kicked out with an exception because the database login credentials were incorrect. Still confused as to why the new service would have this problem, I set out to find this data source. Running the SQL 2000 Server Network Utility doesn't list this instance. osql /L only lists the (local) instance. How do I find this instance? Why does my service not see the instance as the other ones do? More information listed below.
Server is Server 2003 Standard SP1, IIS 6
SQL Server 2000 is the DB
Each service is a C# Windows forms project (is there any valid reason to do this?) that has been changed to output a class library.
Services inherit from the webservice class.
A final project in the solution is an ASP.NET web application that has dependencies on all the other projects and hosts the asmx files which simply refer to the C# classes from the other projects.
Authentication is using Membership.ValidateUser against SQL server 2000. The web.config contains this:
[Code]....
The exception is here:
[Code]....
View 8 Replies
Nov 18, 2010
I have 2 connection strings which connect to the same database. I used the exact same syntax for both of them, the only difference is the address which they point at.
The "ApplicationServices" connection string functions just fine.
The "GoMelodyEntities" connection string produces Keyword not supported: 'data source'.
[Code]....
View 2 Replies
Mar 10, 2010
<configuration>
<add
name="stringname"
[code]...
View 9 Replies
Feb 27, 2010
I know I can load the symbols for the class but i can't get it to work. I tried everything so i give up.
I only need the code for this class. It's because i am using a custom script manager and i must know how the .net one works.
View 1 Replies
Jan 12, 2010
Out of all the projects that contribute to MVC, I've added only the System.Web.Mvc project to my solution and I'm having trouble with the compilation of the aspx files. Firstly the page compiler complained that ViewResult<T> (which my View inherits from) was specified in two assemblies - the copy in the source code and the one in the GAC. I fixed this by changing my copy of the source code to a higher version and referencing the different verison within the 'compilation' tag in web.config. (In fact you can just delete the assembley reference altogether and it automatically uses the one in the solution.) Then it complained that Html helper methods couldn't find classes such as 'Controller'. Now I think this is because the official MVC assemblies in the GAC are looking for the correct version of 'System.Web.Mvc' (i.e. the one with the right public key) but my app is no longer referencing it.
I thought I'd fixed this with an assembley redirect to my version of the code but now the View templates are complaining about inheriting from classes that are in an assembley with the wrong public key.So is what I'm doing possible or do I need to be recompiling all of the MVC source code?
View 2 Replies
Oct 17, 2010
Is there a way to confige IIS to open a database(s) at server level and other application just reference the database handler(pointer)? For an example in Tomcat or Resin, we can specify a set of database souece in the configuration file so the Tomcat or Resin starts, these database will be opened. And rest of applications can reference these datasource handler/pointer in their individual application web.config files.
View 2 Replies
Aug 19, 2010
i have a website i wont to sell how i can protected it and install it without the source code is that possible
View 1 Replies
Feb 28, 2011
I'm looking for a free shopping cart source code to start creating customized chart.MSC Musicstore sample code is too simple. NOPCommerce requires adding link into it in every page.Where so find such source code ?
View 4 Replies
Feb 25, 2010
I want a list of Asp.net projects as well as .NET projects with source code. for Acadamic Level......
View 7 Replies
Mar 1, 2010
In the Java world for instance, there are some very sophisticated tools to manage the quality of the source code, and that cover more than one dimension, such as :
Coding Rules
Comments
Complexity
Unit testing
Code coverage
etc.
These tools are very useful to manage the technical debt. They connect to a repository of source code and scan it. They can be triggered automatically just by the fact of committing the source code.We have a large number of ASP.NET applications to maintain and evolve, and have continuous flow of demands for new ones to be created. We know that we have a technical debt, but we are facing some challenges of identifying it and having it under control.
there are some tools to manage the source code quality in ASP.NET applications like those mentioned above.
View 4 Replies
Jul 3, 2010
In the SQLMembershipProvider source for ASP.NET membership, there is a custom exception, MembershipPasswordException.
The definition of it is not part of the source, but when I do a goto definition on it, it opens the definition, which indicates: [from metatdata] and the file it came from is a dll, system.web.dll from a temporary directory.How did that get there or was it part of the msi install that the toolkit provider came with?
View 2 Replies
Nov 24, 2010
I am aware Stackoverflow isn't open source, but i have seen a MIX video of phil haack creating a stackoverflow-like app called 'haackOverflow" .
PS : I'm looking for a app that is developed in ASP.NET MVC(with best practices). i have found music store, nerd dinner,and MS town hall app.
View 1 Replies
Jan 5, 2011
we have an application in production and the code is in Pre-Compiled form. The developer who developed that application left the company and we don't have any backup of source code. the only access we have is Pre Compiled code in the server. We need to fix the issues in the application now.Is there any way to Decompile (extract to actual source code) the PreCompiled code ?
View 3 Replies