Click here to Skip to main content
15,921,941 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Error	10	'Context' is not a member of 'ASP.processinput_aspx'.	C:\Users\suresh\Documents\Visual Studio 2010\Projects\finalyearproject\finalyearproject\processinput.aspx	1	1


What I have tried:

i dnt what the error please somebody post the correct answer for me

ASP.NET
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="studentdetails.aspx.vb" Inherits="finalyearproject.studentdetails" %>
	
		<title>studentdetails

																		<asp:label id="Label2" runat="server">NAME																	<asp:label id="Label6" runat="server">																															<asp:label id="Label1" runat="server">ROLLNO																	<asp:label id="Label7" runat="server">																															<asp:label id="Label3" runat="server">BRANCH&SECTION																	<asp:label id="Label8" runat="server">																															<asp:label id="Label4" runat="server">YEAR																	<asp:label id="Label9" runat="server">																															<asp:label id="Label5" runat="server">SEMESTER																	<asp:label id="Label10" runat="server">													
																								<asp:datagrid id="DataGrid1" runat="server">							
			<asp:label id="Label11" 
="" style="Z-INDEX: 101; LEFT: 755px; POSITION: absolute; TOP: 388px" runat="server" width="220px">STUDENT DETAILS
Posted
Updated 28-Jan-20 22:27pm
v2
Comments
Patrice T 29-Jan-20 2:53am    
This "C:\Users\suresh\Documents\Visual Studio 2010\Projects\finalyearproject\finalyearproject\processinput.aspx" is the name of a file on your computer.
We don't have access to that file.
You have to copy/paste the code itself to the question.
nehaperiyasamy 29-Jan-20 3:44am    
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="studentdetails.aspx.vb" Inherits="finalyearproject.studentdetails" %>





<title>studentdetails









<asp:label id="Label2" runat="server">NAME <asp:label id="Label6" runat="server"> <asp:label id="Label1" runat="server">ROLLNO <asp:label id="Label7" runat="server"> <asp:label id="Label3" runat="server">BRANCH&SECTION <asp:label id="Label8" runat="server"> <asp:label id="Label4" runat="server">YEAR <asp:label id="Label9" runat="server"> <asp:label id="Label5" runat="server">SEMESTER <asp:label id="Label10" runat="server">
<asp:datagrid id="DataGrid1" runat="server">
<asp:label id="Label11"
="" style="Z-INDEX: 101; LEFT: 755px; POSITION: absolute; TOP: 388px" runat="server" width="220px">STUDENT DETAILS
 



1 solution

Read the error message:
'Context' is not a member of 'ASP.processinput_aspx'
It explains exactly what the problem is. You are trying to use a property, field, delegate, or method of ASP.processinput called Context and it isn't defined, or it's defined in a different class altogether.

Start by looking at your code and find every location where you use "Context". Then check what you expected to use, and if it should be a part of the class that you spelled it correctly.
And dumping your HTML file on us for a VB error isn't helpful at all, given that it's a VB code error ... So look in your VB code file, we can't do that for you!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900