Search results

  1. Kodo

    Am I missing Something??

    it's pretty well propagated already. It's part of the window updates. If you create an msi installer for your app, this dependency is noted on installation and the option to download is displayed to the user, OR, you can distribute this with your exe (not recommended usually for size reasons).
  2. Kodo

    Find Next Record

    look up making custom events
  3. Kodo

    Am I missing Something??

    exe's don't need to be installed. It is more likely that the .NET version you built your app with is not installed on the target machine.
  4. Kodo

    Am I missing Something??

    n-tier http://www.15seconds.com/issue/011023.htm
  5. Kodo

    Am I missing Something??

    aye aye. that there is your firehose :)
  6. Kodo

    Am I missing Something??

    If you guys want to learn more about table adapters and typed datasets like the way you're doing it, then read the tut: http://www.asp.net/Learn/DataAccess/default.aspx?tabid=63 However, following proper techniques, you should be making an attempt to decouple your layers from eachother. That...
  7. Kodo

    first shot at web.config

    make sure you didn't inadvertantly remove the ending system.web tag
  8. Kodo

    first shot at web.config

    I hear ya man. I had a similar experience like that today..only the error being thrown was in a class that was below a class that the error was being thrown in.. took me some time to figure that one out.. lol
  9. Kodo

    first shot at web.config

    ready to kick yourself? <authentication mode="Forms" /> <forms name=".ASPXFORMSDEMO" loginUrl="logon.aspx" protection="All" path="/" timeout="30" /> </authentication> your first authentication element is closed... :) remove the /> so it looks...
  10. Kodo

    Implementing Custom Controls

    you need to compile the datetimepicker project to a dll. then on your toolbar add a new item and point to the compiled dll.
  11. Kodo

    Adding record in 2005 Express

    take a look here. There are TONS of webcasts to keep you busy :) https://www.msteched.com/content/webcasts.aspx
  12. Kodo

    Unspecified Error

    could be your connections are not being closed. Make sure you are doing Conn.close set Conn=nothing when you're done with the connection
  13. Kodo

    Unspecified Error

    response.write out your dbPath to make sure it's pointing to the write place. then make sure IUSR_[machine_name] has modify rights to the db folder.
  14. Kodo

    Access DB (reports/Table only) on our web page

    You could just export that table as an HTML file.. and then post it.
  15. Kodo

    Help !

    type the value of aOption to an integer aOption=request.form("aOption") select case Cint(aOption) case 1 case 2 .....etc etc... end select
  16. Kodo

    Pls Help ! "Unspecified error"

    don't use a DSN.. use a file path connection string. now make sure that the folder that the db is in has IUSR_[machinename] modify rights (machine name is the name of your computer) so something like IUSR_KELVINSQL make sure those rights propagate to all subfolders and files.
  17. Kodo

    Sending email with ASP

    yes, make an html template and use the file system object to read the html text of that template to a stream and save it as a string. use that string as the body of the email.
  18. Kodo

    Save XML Page using WebBrowser Document Object

    use the msxmldom object instead http://www.perfectxml.com/msxmlDOM.asp#3 get it as a string and then you have your way with it.
  19. Kodo

    Sending email with ASP

    http://www.aspfaq.com/show.asp?id=2026
  20. Kodo

    Sending email with ASP

    when in asp you must use server.createobject Set myMail=Server.CreateObject("CDO.Message")
Back
Top Bottom