tags:

views:

26

answers:

1

Can anybody explain me how I can include .inc file from VB classic ASP in C# aspx page?

I try do it with:

<!-- #include file="menu.inc" -->

But I receive error about syntax in menu.inc "Compiler Error Message: CS1003: Syntax error, '(' expected" - "Line 3: if Len(Session("GUID")) < 1 Then":

  <%
if Len(Session("GUID")) < 1 Then
    Response.Redirect "default.asp"
End If
  %>
A: 

This is not possible.

SLaks