HI
Am in the process of creation of a Assembly and then using in the aspx
pages.
my task is to create a .vb file--->convert to dll----> place in GAC ---> refer in aspx page.

my steps were :
1. creating the strong name : sn.exe -k "emp.snk
2. creating the dll by giving the sn in the .vb file : using vbc.exe
so when converting the vb file to dll file i added teh namespace end
namespace tags also.

the compilation was over and successfulll

3. added to GAC : gacutil.exe -i file name : this step is also sucessfull.

4. added the namespace which i gave in the dll, in the aspx pages ----->>>the problem came here.....the page is not able to recognise the codebehind events which i have written in the dll file.


the error is like this :::
BC30456: 'empsave' is not a member of 'ASP.empcodebehind1_aspx'.
where :: empsave -method name
empcodebehind1.aspx --my aspx page


how to solve this ???

i am not using vs.net..am using notepad and manuallly compiling the dll's.

pls do get back asap!!

,,,,

Senthil