Unveiling the largest adnetwork
Project Name: Unveiling the largest Ad network Description: Project aims at providing the largest adservice for both publishers and advertisers globally or to a specific market.
error to use a section registered as allowDefinition=’MachineToApplication’ beyond application level
Error 141 It is an error to use a section registered as allowDefinition=’MachineToApplication’ beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS. D:\developers\Suraj\projects\dunecorporation\new\new\StraightRootMkt\StraightRootMkt\StraightRootMkt\Web.config 43 this kind of error can be removed by altering the below code: <configuration> <configSections> <sectionGroup name=”system.web.extensions” type=”System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, [...]
Compiler Error Message: CS0161: ‘users.login(string, string)’: not all code paths return a value
Not All code paths retun a value. comes when we set any function to return any kind of datatype value other than void as Line 25: public string login(string userid, string pwd) above funciton must return string value in every case, no matter if it returns a blank string. Hence, if you din’t check every [...]
Cannot implicitly convert type ‘int’ to ‘string’
Simple type casting problem, actually the value is INT datatype and trying to assign a variable with datatype string. Thats why we must convert variables to respective datatype properly before assigning to any other variable. Server Error in ‘/dcorp’ Application. Compilation Error Description: An error occurred during the compilation of a resource required to service [...]
Compiler Error Message: CS0103: The name ‘SqlHelper’ does not exist in the current context
Below error came in existence if we forget to include namepace for function/ object we are using on that particular file. OR else if you created some custom class then be sure that class is in your application scope. i.e. App_code folder. Server Error in ‘/dcorp’ Application. Compilation Error Description: An error occurred during the [...]