Personal Starter Kit for MS Access

Rate It (5)

Last post 09-21-2009 1:59 PM by smcmiata. 88 replies.

Sort Posts:

  • Re: Personal Starter Kit for MS Access

    04-22-2008, 11:30 AM
    • Member
      332 point Member
    • victorcorey
    • Member since 06-17-2002, 6:13 PM
    • Bellevue, WA
    • Posts 98

    All you would do is upload it to you hosting site.

    1. Make sure you host has the 2.0 framework

    2. You may need to set permissions on the App_Data directory

    Victor Corey
  • Re: Personal Starter Kit for MS Access

    04-22-2008, 11:45 AM
    • Participant
      989 point Participant
    • smcmiata
    • Member since 02-21-2003, 9:48 AM
    • Issaquah, WA
    • Posts 289

    I have been very happy with www.hostingfest.com. It's very inexpensive for the hosting and domain name. I am not affiliated with them, just satisfied with their hosting. I found them through a link on this home page, under Featured ASP.NET web hosting.

    "I have not failed. I just found 10,000 ways that don't work." - Thomas Edison
  • Re: Personal Starter Kit for MS Access

    06-07-2008, 9:23 AM
    • Member
      7 point Member
    • jjkky
    • Member since 06-07-2008, 1:15 PM
    • Indiana
    • Posts 30

    Hello All,

    I just published the extended personal starter kit and I must say, it's nice to see modified code out there without any serious bugs.  I am somewhat new with asp.net and thought the kit would be a great way to learn more about .net.  I have a question concerning the email feature.  My hosted site does not have a mail server on the hosted site server.  I was told I could use and ip address to get to the mail server.  I've searched through the extended personal starter kit for ms access and cannot find where to modify email configurations.  Can anyone tell me where the ip address to get the email feature working?   Thanks, Jim

    Filed under:
  • Re: Personal Starter Kit for MS Access

    06-07-2008, 2:04 PM
    • Member
      332 point Member
    • victorcorey
    • Member since 06-17-2002, 6:13 PM
    • Bellevue, WA
    • Posts 98

    Actually I think I missed that in the download. There should be an entry in the web.config. I put it at the end:

      

        <system.net>
            <mailSettings>
                <smtp from="{email_address">
                    <network host="{ip_address}" password="{password}" userName="{username}"/>
                </smtp>
            </mailSettings>
        </system.net>	
     
    Victor Corey
  • Re: Personal Starter Kit for MS Access

    06-07-2008, 3:51 PM
    • Member
      7 point Member
    • jjkky
    • Member since 06-07-2008, 1:15 PM
    • Indiana
    • Posts 30

    Thank you so much Victor.  That did it!  It appears the only thing left is to incorporate the video page like your site has and modify some of the css files.  I love this product and can't thank you enough.

    Visit http://www.jjkiefer.com

  • Re: Personal Starter Kit for MS Access

    08-22-2008, 9:02 AM
    • Member
      181 point Member
    • DKB
    • Member since 12-14-2005, 2:22 PM
    • Cape Cod Massachusetts
    • Posts 198

    Hi Victor I have a question regarding the extended personal starter kit. There are two page files, one concerning the password and the other, security question can you explain what your plan was for these pages. I  see that they are in the root of the site I would have though that they would have been placed in the admin folder with of course admin permissions. Unless they were there for learning purposes and expecting the user to place them there in the admin folder themself. I'm a bit confused can you please instruct me in their purpose I don't see them in the sitemap. I ask only because I am a novice user of asp.net and like to ask questions before dive in to things. Thank you for your time.

     

    DKB

    DKB
  • Re: Personal Starter Kit for MS Access

    08-22-2008, 12:13 PM
    • Member
      332 point Member
    • victorcorey
    • Member since 06-17-2002, 6:13 PM
    • Bellevue, WA
    • Posts 98

    I think you are talking about the RecoverPassword.aspx and ChangeSecurityQuestion.aspx pages. It has been sometime since I have looked at the codebase from the default install, so I'm not sure if these were implemented. These pages are for users to recover their password and change their security question once logged in that is why they are not in the admin folder. The RecoverPassword is linked from the homepage just below the login form and the ChangeSecurityQuestion is linked from the Profile section once logged in.

     Hope this helps.

    Victor Corey
  • Re: Personal Starter Kit for MS Access

    08-23-2008, 12:42 PM
    • Member
      181 point Member
    • DKB
    • Member since 12-14-2005, 2:22 PM
    • Cape Cod Massachusetts
    • Posts 198

    Hi Victor I see what is happen with them now I see how they are used once a person is logged in, and thanks for your prompt logical reply.

     

    DKB 

    DKB
  • Re: Personal Starter Kit for MS Access

    12-12-2008, 12:28 PM
    • Member
      6 point Member
    • kekewong
    • Member since 11-20-2008, 5:27 PM
    • Posts 42
    Hi Victorcorey ,

    i saw all of the post nd most of the people works fine , but for me i facing the installation problem . When i double click the personalStarterKitMSAccess.vsi, it shows a error msg , "String cannot have zero length " ,currently i am using visual studio 2008 Professional Edition . How can i solve this problem?

    THanks.
  • Re: Personal Starter Kit for MS Access (using GoDaddy)

    02-18-2009, 2:03 PM
    • Member
      2 point Member
    • kgraue
    • Member since 02-18-2009, 6:42 PM
    • Posts 1

     Much thanks to Victor as well. Great job! I can host the website just fine with GoDaddy. The issue I run into is with the connection string. The default connection string in the Extended Kit is the following:

    <connectionStrings>
    <add name="Personal" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|Personal.mdb;" providerName="System.Data.OleDb"/>
    <add name="PersonalAccessProvider" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|ASPNetDB.mdb" providerName="System.Data.OleDb"/>
    </connectionStrings>

    I think on any other host this would work. On GoDaddy, however; they require you to put your Access Database in their access_db folder that is created when you setup using an Access Database. The problem here is the DataDirectory part in Source=|DataDirectory|Personal.mdb; for example. Based on the following website:

    http://programming.top54u.com/post/ASP-Net-2-0-Access-Database-connection-string.aspx

    the DataDirectory folder refers to the App_Data folder which is where a database would be by default but NOT with GoDaddy.

    My question is simple: how do I use the Extended Kit with GoDaddy with an Access Database? Is this even possible? I think I can use this connection string if I refer to the access_db folder instead of the App_Data folder. How do I do that? Help here would be much appreciated. Thanks in advance.

    Kevin

  • Re: Personal Starter Kit for MS Access

    02-20-2009, 9:12 AM
    • Member
      4 point Member
    • vsortiz
    • Member since 02-20-2009, 2:09 PM
    • Posts 2

     Wow. This is awesome! Thanks so much. Had no problems. Just do an Open Web Site within VS2005, and works every time!

    Was even able to modify the entire application and db to store pics on a file system instead of inside the MS Access DB, which was getting very large. I store the pic's path as a string in the DB. Works great.

    Thanks so much!

  • Re: Personal Starter Kit for MS Access (using GoDaddy)

    04-18-2009, 10:09 PM
    • Member
      4 point Member
    • vsortiz
    • Member since 02-20-2009, 2:09 PM
    • Posts 2

     Hi kgraue,

     You likely figured this out by now :)

    I, too, have godaddy and use this setup. I bypass the godaddy setup of having to put the access db file in their access_db folder. I have found that the MS Access DB file doesn't have to reside in the access_db folder. I completely ignore this folder and place my Access DBs wherever I desire. I just ensure the godaddy folder that houses my Access DB file has write permissions. My godaddy access_db folder is actually empty right now :)

     My personal.mdb lives in the App_Data folder as the kit suggested. I never touched the kit's default settings. I loaded the kit on my local machine, ensured it worked, then just uploaded all the files from my local machine to my godaddy website, and it just always has worked. 

     Were you able to change the web.config settings in the kit to accomodate the godaddy access_db folder? This would be great info to know.

    Good luck!

  • Re: Personal Starter Kit for MS Access (using GoDaddy)

    09-19-2009, 5:34 PM
    • Member
      2 point Member
    • acustovic
    • Member since 09-19-2009, 9:28 PM
    • Posts 1

    Hi,

    Does anyone have the Personal Starter Kit for MS Access coded in VB.NET? Any help would be appreciated.

    Thank you!


  • Re: Personal Starter Kit for MS Access (using GoDaddy)

    09-21-2009, 1:59 PM
    • Participant
      989 point Participant
    • smcmiata
    • Member since 02-21-2003, 9:48 AM
    • Issaquah, WA
    • Posts 289

     Mine is currently using VB.net with access:

    http://www.seanmcgriff.net

    The only problems I've had so far are the permissions management. That doesn't work. I have another site in our company's intranet that uses SQL w/VB.net and everything works fine.

    SMc

    "I have not failed. I just found 10,000 ways that don't work." - Thomas Edison
Page 6 of 6 (89 items) « First ... < Previous 2 3 4 5 6