Home All Groups Group Topic Archive Search About

Using Access mdb file with Web Site Administration Tool

Author
9 Jul 2009 7:18 AM
Manish Agarwal
Hi,

How can I use MSAccess's mdb file with Web Site Administration Tool instead
of SQL Server mdf file?

Regards,
Manish Agarwal

Author
9 Jul 2009 12:22 PM
sloan
http://msdn.microsoft.com/en-us/library/44w5aswa.aspx
http://msdn.microsoft.com/en-us/library/aa479008.aspx

Give those a try.


You might want to google ( ::::::errrrrrrrrrrrrr:::::: "bing" ) these
phrases:

"Jet Database" "MembershipProvider" and look at those hits.


Show quoteHide quote
"Manish Agarwal" <manishkris***@hotmail.com> wrote in message
news:ONde4VGAKHA.4432@TK2MSFTNGP05.phx.gbl...
> Hi,
>
> How can I use MSAccess's mdb file with Web Site Administration Tool
> instead of SQL Server mdf file?
>
> Regards,
> Manish Agarwal
>
Are all your drivers up to date? click for free checkup

Author
9 Jul 2009 12:24 PM
sloan
Here is the one I was looking for:

http://msdn.microsoft.com/en-us/asp.net/aa336558.aspx

Downloads
     Sample Access Providers


IIRC, it was a partial implementation.



Show quoteHide quote
"Manish Agarwal" <manishkris***@hotmail.com> wrote in message
news:ONde4VGAKHA.4432@TK2MSFTNGP05.phx.gbl...
> Hi,
>
> How can I use MSAccess's mdb file with Web Site Administration Tool
> instead of SQL Server mdf file?
>
> Regards,
> Manish Agarwal
>
Author
9 Jul 2009 12:41 PM
Manish Agarwal
Thankyou for your reply

I followed the steps mentioned at
http://imar.spaanjaars.com/QuickDocId.aspx?quickdoc=404 But I was facing
some problem, after spending 2 hrs I come to know that in connection string
I was using a folder path containing "#" :-(

One more query I have, I have configured SMTP settings using WSAT and using
forget password control but at run time it throwing exception that it is not
implemented. What could be the problem ?

Regards,


Show quoteHide quote
"sloan" <sl***@ipass.net> wrote in message
news:%23%23q7xAJAKHA.4168@TK2MSFTNGP05.phx.gbl...
> Here is the one I was looking for:
>
> http://msdn.microsoft.com/en-us/asp.net/aa336558.aspx
>
> Downloads
>     Sample Access Providers
>
>
> IIRC, it was a partial implementation.
>
>
>
> "Manish Agarwal" <manishkris***@hotmail.com> wrote in message
> news:ONde4VGAKHA.4432@TK2MSFTNGP05.phx.gbl...
>> Hi,
>>
>> How can I use MSAccess's mdb file with Web Site Administration Tool
>> instead of SQL Server mdf file?
>>
>> Regards,
>> Manish Agarwal
>>
>
>
Author
9 Jul 2009 1:46 PM
sloan
I would go through this code:
http://sholliday.spaces.live.com/blog/cns!A68482B9628A842A!138.entry

so you can learn/understand ~~HOW~~ emails are sent via .Net.

When emails are failing , you need to get a grasp on the different
authentication models, which is the usual culprit.


AFTER you work through the code at the above URL....you can probably use the
default settings:


Here is the typical setup for emails.  Again, if you just skip the URL above
and just go for the "quick fix" below, you'll miss the opportunity to
understand ~how the emails are sent using the different authentication
schemes.
  <system.net>

    <mailSettings>
      <smtp from="y***@email.com">
        <network host="smtp-server.rr.com" password=""
userName="myacco***@rr.com" />
      </smtp>
    </mailSettings>

  </system.net>



But it would be wise/prudent to get a grasp on how emails are sent instead
of just patching it so it works today.  Because when you deploy, things most
likely will be slightly different.






Show quoteHide quote
"Manish Agarwal" <manishkris***@hotmail.com> wrote in message
news:eA4gSKJAKHA.4004@TK2MSFTNGP05.phx.gbl...
> Thankyou for your reply
>
> I followed the steps mentioned at
> http://imar.spaanjaars.com/QuickDocId.aspx?quickdoc=404 But I was facing
> some problem, after spending 2 hrs I come to know that in connection
> string I was using a folder path containing "#" :-(
>
> One more query I have, I have configured SMTP settings using WSAT and
> using forget password control but at run time it throwing exception that
> it is not implemented. What could be the problem ?
>
> Regards,
>
>
> "sloan" <sl***@ipass.net> wrote in message
> news:%23%23q7xAJAKHA.4168@TK2MSFTNGP05.phx.gbl...
>> Here is the one I was looking for:
>>
>> http://msdn.microsoft.com/en-us/asp.net/aa336558.aspx
>>
>> Downloads
>>     Sample Access Providers
>>
>>
>> IIRC, it was a partial implementation.
>>
>>
>>
>> "Manish Agarwal" <manishkris***@hotmail.com> wrote in message
>> news:ONde4VGAKHA.4432@TK2MSFTNGP05.phx.gbl...
>>> Hi,
>>>
>>> How can I use MSAccess's mdb file with Web Site Administration Tool
>>> instead of SQL Server mdf file?
>>>
>>> Regards,
>>> Manish Agarwal
>>>
>>
>>
>
>

Bookmark and Share