M
Mr. X.
Hello.
I see that if I have my own dlls, that need to put on web site,
I should declare the dll-file on web.config file like this :
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<compilation>
<assemblies>
<add assembly="MyDll, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=null"/>
</assemblies>
</compilation>
</system.web>
</configuration>
Except that : I need PublicTokenKey.
Should I create publicTokenKey, and how can I do that?
Thanks
I see that if I have my own dlls, that need to put on web site,
I should declare the dll-file on web.config file like this :
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<compilation>
<assemblies>
<add assembly="MyDll, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=null"/>
</assemblies>
</compilation>
</system.web>
</configuration>
Except that : I need PublicTokenKey.
Should I create publicTokenKey, and how can I do that?
Thanks