Ask a Question related to ASP.NET Web Services, Design and Development.
-
ven #1
dll from aspx
hello
i`m making a web service based on .net..... i use web matrix to make pages
and code in vbscript... my web pages have .aspx extension and everybody who
have access to server may read my code from this files.... maybe there is
somethin to make a dll or ??? from aspx files that allow to hide my code
from other people ???
thanks
VEN
ven Guest
-
passing a token from pageA.aspx to pageB.aspx
I am trying to get pageA.aspx gridView to pass a key (say deptID) to pageB.aspx which will use the value passed as a filter in it's own griView... -
Accessing a aspx page using HttpWebRequest from another aspx page on the same webapp
Did you have any luck on this as I have the same problem. Maybe you can help me out of you solved your problem. -
SSL in an ASPX Web App
Yes, you can use your ASP.NET page as is with the https:// prefix. The web server handles securing the communication. -- James J. Foster,... -
including one aspx file in another aspx file
Is there a way is asp.net that I can include another aspx file ?. We can do this in asp by using include statement. -
.aspx
hello.. i just bought a book called "Learn ASP.NET in 21 days"..lol I am running win2k pro...i installed iis and the .net stuff...now... when i try... -
Dino Chiesa [Microsoft] #2
Re: dll from aspx
If you have aspx then it is not webservices you are building. it is web
pages (web forms) .
To hide your code, you can make an ASPX like this:
<%@ Page Language="C#"
Inherits="HideCodePage"
Debug="true"
Trace="false"
%>
And then define the class denoted by "Inherits=" like this:
using System;
public class HideCodePage : System.Web.UI.Page {
private void Page_Load(object sender, System.EventArgs e) {
Trace.Write(">> hidecode.cs: Page_Load()");
Response.Write("\nHello, from hidecode.<br/>");
Response.Write("\nIt is now <font size='+1' color='blue'>" +
System.DateTime.Now + "</font><br/>\n");
}
}
Compile the above into a DLL, and install it into the webapp's bin
directory.
But this won't completely solve the problem. Assemblies can be decompiled.
All this would do is make it a little more difficult to view the code.
-Dino
"ven" <venome_@poczta.onet.pl> wrote in message
news:c9g9jc$h9c$1@news.onet.pl...who> hello
>
> i`m making a web service based on .net..... i use web matrix to make pages
> and code in vbscript... my web pages have .aspx extension and everybody> have access to server may read my code from this files.... maybe there is
> somethin to make a dll or ??? from aspx files that allow to hide my code
> from other people ???
>
> thanks
>
> VEN
>
>
Dino Chiesa [Microsoft] Guest



Reply With Quote

