can i integrate asp and aspx page开发者_StackOverflows wchich are not concerned with session so there wont be any session related issues but are there some other issues? i am not getting how to call c# function from my asp page
The easiest way to do this would be to embed your C# code in a DLL and make it COM visible. That way you could call your code just as you would with any other COM library.
The other option is using web services, but that is slower and not easy to set up via classic ASP.
i am not getting how to call c# function from my asp page
You can't.
Have a look at this article. You can call static C# methods from asp.net.
精彩评论