Discuz! NT 3.5.2 official and Asp.net Website member information integration, 3.5.2 member information
Discuz! NT provides many external interfaces to facilitate integration with other websites. After my own tests, I think the open interfaces are quite in place. Once the development and test passes, the api documentation is useless, and it takes a lot of weeks to get it done. However, the effort is not enough.
Step 1: Discuz! NT installation is not described anymore. There are many installation tutorials on the Internet. Pay attention to the installation directory. If it is the root directory, you can directly use the default directory. If it is in a folder, such as/bbs/, you can modify the DNT. config file in the root directory of the BBS file before installation, as shown in the following code.
<? Xml version = "1.0"?> <BaseConfigInfo xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" xmlns: xsd = "http://www.w3.org/2001/XMLSchema"> <Dbconnectstring> Data Source = .; user ID = sa; Password = 123456; Initial Catalog = bbs; pooling = true </Dbconnectstring> <Tableprefix> dnt _ </Tableprefix> <Forumpath>/dnz/</Forumpath> <! -- Change to the corresponding directory. The root directory is the default directory. --> <Dbtype> SqlServer </Dbtype> <Founderuid> 0 </Founderuid> </BaseConfigInfo>
Step 2: Download The Development Kit DiscuzToolkit
Download a Discuz! How can I integrate the source code of the NT forum with my aspnet website?
It's easy to add. You don't need to append it to your project. You just need to point to the space path when creating a folder for the Forum and storing it in the space.
Discuz! How does NT integrate with the existing AspNet website to achieve single-point logon?
It depends on what background and language your website a uses.
If you write it yourself, DZ nt has a powerful interface that is easy to use. You can go to the DZ forum to view the corresponding posts.