If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > <%@ import Namespace="Acme" %> Problem

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-14-04, 10:55
eye_code eye_code is offline
Registered User
 
Join Date: Jul 2004
Posts: 1
<%@ import Namespace="Acme" %> Problem

when i include this
<%@ import Namespace="Acme" %>

i get this
Compiler Error Message: CS0246: The type or namespace name 'Acme' could not be found (are you missing a using directive or an assembly reference?)
Reply With Quote
  #2 (permalink)  
Old 07-14-04, 15:44
Bullschmidt Bullschmidt is offline
Guru
 
Join Date: Jun 2003
Location: USA
Posts: 1,032
I never saw ASP code like this:
<%@ import Namespace="Acme" %>

But if you have a field name called ACME on a form and are now on a page receiving the post and want to show the value of the field:

<%= Request.Form("ACME") %>

Or

<%
Response.Write Request.Form("ACME")
%>

Hope this helps.
__________________
J. Paul Schmidt, Freelance Web and Database Developer
www.Bullschmidt.com
Access Database Sample, Web Database Sample, ASP Design Tips
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On