Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

Dan_P

@Dan_P
About
Posts
56
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • URL Redirecting (or Rewriting?)
    D Dan_P

    We use ISAPI_Rewrite from http://www.helicontech.com/[^] Also have a read of this http://www.codinghorror.com/blog/archives/000797.html[^]

    ASP.NET csharp windows-admin question asp-net com

  • How to unzip file whith C#???
    D Dan_P

    Have a look at this lib: http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx[^]

    C# csharp tutorial question

  • isolated storage
    D Dan_P

    No this is missing in the compact framework version.

    Mobile question

  • creating databse
    D Dan_P

    It might be easier to have a pre-created template database, which you just make a copy of when needed.

    Visual Basic database help question

  • Strange problem...
    D Dan_P

    Definately sounds like a hardware problem, have a quick read of this[^],

    C / C++ / MFC help tutorial question

  • runtime event handle
    D Dan_P

    Have 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; ...... ......... } }

    C#

  • Dynamic Dll
    D Dan_P

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

    C# csharp sysadmin

  • How can i hide HTML source code of web page
    D Dan_P

    No, the browser needs this information to render the page.

    ASP.NET html question

  • Help Me to port to Win98
    D Dan_P

    What exactly are you doing? It's not really clear if your using managed c++ or where the exception is being thrown. Anyway some things like EventLogs don't exist on windows 98. Have a look at this list[^] of supported features.

    .NET (Core and Framework) help csharp c++ dotnet question

  • Automatic shutting down of windows xp
    D Dan_P

    You can use ExitWindowsEx[^] if you have the right privileges.

    C# csharp json help

  • help me...
    D Dan_P

    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.

    Web Development com help

  • "COM object with CLSID {10020200-EB1C-11CF-AE6E-00AA004A34D5} is either not
    D Dan_P

    It sounds like you need to redistribute the DTS files. The interop library is just a component which uses these files. Have a look at this[^].

    Database com csharp help question

  • Two counts of rows with different criteria
    D Dan_P

    Like 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')

    Database tutorial database com tools regex

  • web service
    D Dan_P

    The client proxy class will throw a WebException if it can't connect to the service.

    C# database sysadmin tutorial question

  • ASP.NET Upload problem. 8MB file or more
    D Dan_P

    put the following in your web.config file: That number is around 105mb

    ASP.NET help csharp asp-net sysadmin question

  • How to create database for smart device like Pocket PC
    D Dan_P

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

    .NET (Core and Framework) help csharp database tutorial question

  • How to create database for smart device like Pocket PC
    D Dan_P

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

    .NET (Core and Framework) help csharp database tutorial question

  • db query
    D Dan_P

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

    ASP.NET database help

  • Search box
    D Dan_P

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

    ASP.NET database sysadmin algorithms help

  • popup when moving across websites
    D Dan_P

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

    ASP.NET question com
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups