We use ISAPI_Rewrite from http://www.helicontech.com/[^] Also have a read of this http://www.codinghorror.com/blog/archives/000797.html[^]
Dan_P
Posts
-
URL Redirecting (or Rewriting?) -
How to unzip file whith C#???Have a look at this lib: http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx[^]
-
isolated storageNo this is missing in the compact framework version.
-
creating databseIt might be easier to have a pre-created template database, which you just make a copy of when needed.
-
Strange problem... -
runtime event handleHave you added the dynamic control to the parent's controls collection?
class classname { Button b=new Button(); b.id=....... b.Click += new System.EventHandler(_functionname); this.Controls.Add(b); //where 'this' is the parent container. ........... ........... ........... private void _functionname(object sender, System.EventArgs e) { Button bb=(Button)sender; string urls; urls=bb.id; ...... ......... } }
-
Dynamic DllSounds like you are looking for something like the provider model in .NET v2, also it might be worth while to have a look at the community server project[^], they have implemented a lot of this type of functionality.
-
How can i hide HTML source code of web pageNo, the browser needs this information to render the page.
-
Help Me to port to Win98 -
Automatic shutting down of windows xpYou can use ExitWindowsEx[^] if you have the right privileges.
-
help me...You could do a number of things, firstly you could write a redirect in the default.asp in that folder: i.e. Response.Redirect("Cards.asp") Or you could setup IIS to use cards.asp as a default document, by going to the IIS manager, Right click on the website, go properties then add cards.asp in the documents tab.
-
"COM object with CLSID {10020200-EB1C-11CF-AE6E-00AA004A34D5} is either not -
Two counts of rows with different criteriaLike this:
SELECT COUNT(StudentID) AS Females, (SELECT COUNT(StudentID) AS Males FROM dbo.Students WHERE (Sex = 'M')) AS Males FROM dbo.Students AS Students_1 WHERE (Sex = 'F')
-
web serviceThe client proxy class will throw a WebException if it can't connect to the service.
-
ASP.NET Upload problem. 8MB file or moreput the following in your web.config file: That number is around 105mb
-
How to create database for smart device like Pocket PCNo it's not pre-installed you can download it from: http://www.microsoft.com/sql/ce/downloads/ce20.asp[^] Actually i've only ever grabbed the Cab files from visual studio .net, just in case that link is wrong.
-
How to create database for smart device like Pocket PCThe SQL Server CE tools on the PDA have a simple Query Analzyer tool, you can execute sql or visually design the tables with this tool.
-
db queryAfter your line of code, q_str will contain "select * from tab1 where audate > 01/05/2005", this isn't valid SQL, the date part needs to escaped like:
q_str = " select * from tab1 where audate > """ + System.DateTime.Now.AddDays(-2) + """;
Even then depending on the database, you might need to format the date like YYYY-MM-DD. -
Search box**mccarthy111 wrote:** _private void Button1_Click(object sender, System.EventArgs e) { if (!IsPostBack) ReadRecords(); }_
This section of code is saying, If the code is not posted back read the database. If you think about it, this code can only be run when the page is posted back. Try removing the if statement. -
popup when moving across websitesDon't you think it's pretty obvious to the user that they going to a different site? I mean they are typing it. Maybe I don't understand your problem, but it sounds pretty silly to me, unless your trying to spam them or something.