Scramble Your C# Code From A Web Application And Still Have It Run Exactly The Same?
Nov 29, 2010
I was wondering if there is a way to protect asp.net front and backend code from being stollen.i.e.Is there a way to scramble your c# code from a web application and still have it run exactly the same?Any free ways of doing this?
View 3 Replies
Similar Messages:
Nov 12, 2011
How i can publish web application without code. I mean when i upload page it's be for example: Default.aspx , Default.aspx.cs , the user can download this pages and edit on code , what i need the user can't see the code after publish such .EXE
View 7 Replies
Mar 25, 2010
As the title says, I wan't to run some code when the application starts. I have a vague idea that there is probably an event in the application life cycle but I am a bit unsure and could do with pointing in the right direction. So how do I make code run when the application starts?
View 5 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
Oct 20, 2010
the process of integrating barcode scanner with the asp.net application in brief,where i need to generate barcode images and read the barcode and store im my database.....
I am not getting how to start and how to integrate that barcode scanner with asp.net appliaction
View 6 Replies
Jan 23, 2011
In a website, I see some developers put code into app_code, and sometimes appcode (due to some bug), other files into DataModel, and other files into miscellaneous folders.
Is there a standard approach to organizing code within an application?
How is it different between an ASP.NET, MVC, Silverlight, Console, Database, and WCF application? The reason I mention WCF is because many people seem to have a shared types library that is linked between the server and client code.
Where can I learn these common practices without having to try, fail, and try again. I'd rather just learn it once from the experts.
View 3 Replies
Aug 6, 2010
for best Asp.Net survey application with source code - commercial is fine..
View 2 Replies
Mar 18, 2011
I'm going to check the database schema at Application_Start event handle in the Global.asax file. If something wrong, I hope to stop the application instead of just catch an exception.
View 2 Replies
Feb 9, 2013
Can I get Code website asp.net by save it or another way
the web site published on the internet by another person
View 1 Replies
Dec 29, 2010
I'm building a new code library and would like to use .Net 4 as my target framework as all my new apps will use .net 4. My legacy web apps use .Net 3.5. I want to use this code library for all of my apps. At this point, I see only 2 options Compile the dll for each framework I need, changing the target framework each time Create separate projects with differing target frameworks. Is there any way around this so my code library is a single compile? Didn't know if there was something built into 4 to allow something like this.
View 1 Replies
Mar 16, 2010
I have a asp.net web application and I'm using cache (HttpRuntime.Cache) to save some stuff from db.
I also update db from time to time so that data in db does not match the data in my application's cache.
Is there any way how to clear my application's cache without modifying any source code or republishing the page?
I tried to restart IIS and to clear browsers cache
View 3 Replies
Jan 17, 2011
Does code in an .aspx page (in between <% %> tags) get compiled in a web application or is it treated like markup where you can just change it without recompiling the solution? Does compiling only compile the code behind code in the .cs and designer.cs files ?
View 2 Replies
Oct 19, 2010
I want to find a place to put my Google Analytics code in my ASP.NET web application. I would like to place it somewhere once and not have to copy and paste the code into multiple files. Is there somewhere that I could inject it that I would only have to include it once and all pages would be effected? I am not using MasterPages unfortunately.
View 6 Replies
Apr 30, 2010
My requirement is to check whether my application is in debug mode or release mode in DLL class.
View 6 Replies
Apr 28, 2010
We have an ASP.NET application running on a webfarm. When we release a new version and copy it to the production servers, occasionally it happens that after a few hours the application reverts to a an earlier code base.Have anyone else experienced something like this? Would sharing an application pool between two applications running different versions of the code make this happen?
Additional information:
3 x web servers running w2k3/iis6
ASP.NET 3.5
View 1 Replies
Aug 5, 2010
I have a website that appears to be "losing" the code behind bin/dll file support while the application is running. I have added an OnError event to the application and am logging it to the event viewer. At first I was getting problems with HTML and other bad input into text boxes. I have used validation and other methods to correct all of this. Now my issue is that the ASPX pages are still served, however I have custom code in the "onLoad" event and it is not being executed. This is in the "onLoad" for the master page so it is affecting the entire site. So far my fix has been to restart the website within IIS. This corrects the problem for anywhere to 24-48 hours and then it occurs again. Last night when this happened I did not recieve any new information in the event viewer log.
View 3 Replies
Dec 6, 2010
I have many operations in the database that need to trigger asp.net applicaton code with service broker in sql server 2005
View 5 Replies
Jul 20, 2010
I have a graphical user interface for my company product.I want to secure the data being sent back and forth between client and server.
Is SSL one of the options? some1 tell me the steps on how to implement it in my application code.
Do i need to buy the certificate or can i make it.. which is the best choice?
I am logging in using FormsAuthenticationTicket as follows:
Session["userName"] = UserName.Text;
Session["password"] = Password.Text;
Session["domain"] = Domain.Text; [code]....
View 3 Replies
Dec 18, 2010
I get the following error with the following code. Also, my Global.aspx Application error did not get this. Why wouldn't Application_Error pick this up? What code do I need to change?
***HERE IS THE ERROR***
System.NullReferenceException: Object reference not set to an instance of an object.
***HERE IS THE CODE BEHIND FOR THE PAGE THOWING THE EXCEPTION***
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
LinkButton1.PostBackUrl = Request.UrlReferrer.ToString()
End If
End Sub
***HERE IS THE GLOBAL.ASPX APPLICATION ERROR CODE***
[Code]....
View 1 Replies
May 29, 2010
I need to be able to get the root directory for my site within my code. If my site is http://xyz.com, how can I retrieve this information within code?
View 7 Replies
Feb 11, 2010
If I have 2 or 3 different domain names which all point to my same application; is there a way that I can differentiate which of the domain name was used to reach my application? for example if I have both [URL] and [URL] that both reach the same application and I would like to be able to tell which one of those 2 is being used, in code behind?
View 1 Replies
Feb 16, 2010
I had a general question about extracting code from a visual studio web test. I used the "generate code" option of a web test and got the following:
[code]....
What I wanted to do is basically put this test into a separate service to run throughout the day for purposes of health checking. I basically want to make sure that users are able to log in throughout the day. What process should I use to get the test into something like a console app? I was running into issues with debugging the webtest code.
View 1 Replies
Mar 14, 2011
i am developing file upload application,i have .ashx file where i have a value in a string variable mydata.
in my .aspx page when i click on any button then data which is store in mydata variable in ashx file it show in text box.
View 1 Replies
Jan 15, 2011
Currently I have project in ASP.NET 2.0 and I wanted to implement web services using my existing code.
View 2 Replies
Jul 21, 2010
Can any body give me code to impement ELMAH error handling for my asp.net mvc application.. I need to know step by step process to implemnt?
View 2 Replies