|
-
Oct 8th, 2003, 02:20 AM
#1
Thread Starter
Frenzied Member
Response write unavailable
I got a really wierd message when I tried to add a response.write
I added a class to my project that would handle db access
I have the colde like this:
Public Class DBAccess
Public Function GetPurchaseOrderLines(parameters) As DataTable
Try
//perform all db here
Return objDt
Catch ex As Exception
Response.Write(ex.Message)
End Try
End Function
Howcome I can't use Response.Write there? It says that it isn't available in this context... Do I have to add namespace reference for this??? That is something new to me....
kind regards
Henrik
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|