Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
4
Posts with Downvotes
3
Downvoting Members
2
2 Commented Posts
0 Endorsements
~3K People Reached
Favorite Tags

13 Posted Topics

Member Avatar for simi pillai

Server Error in '/PrecompiledWeb4' Application. Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: Could not load the assembly 'App_Web_caknetlg'. Make sure that it is …

Member Avatar for crishjeny
-1
321
Member Avatar for knnccb

#include<stdio.h> #include<conio.h> void put(int n) { if(n>0) { put(n-1); printf("*"); } } void disp1(int n) {if(n>0) { disp1(n-1); put(n); } printf("\n"); } void disp2(int n) { if(n>0) { put(n); printf("\n"); disp2(n-1); } } void star(int n) { disp1(n); disp2(n); } void main() { int xy=4; clrscr(); star(xy); getch(); }

Member Avatar for knnccb
0
117
Member Avatar for vbx_wx

try this.I got correct ans #include<stdio.h> #include<string.h> void main() { char x[25],a[10]; int i,p=0,l; clrscr(); printf("enter name\n"); gets(x); l=strlen(x); for(i=0;i<l;i++) if(x[i]==32) p++; printf("space %d",p); getch(); }

Member Avatar for vinitmittal2008
0
288
Member Avatar for vanan4u

line 18: printf ("\tEnter mark for subject English: ", &num1); err:&num1 for the printf stmt why u use this without format specifier? no return type for void.

Member Avatar for mfaisalm
0
186
Member Avatar for pooja yadav

select CONVERT(VARCHAR, date1, 101) AS Date date1 ........variable for date used in database

Member Avatar for simi pillai
0
139
Member Avatar for simi pillai

'/PrecompiledWeb4' Application. Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: Could not load the assembly 'App_Web_eexgwoy1'. Make sure that it is compiled before accessing …

-2
63
Member Avatar for simi pillai

Server Error in '/PrecompiledWeb4' Application. Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' …

Member Avatar for Lusiphur
-1
181
Member Avatar for simi pillai

i don't know how to set CustomErrors to Off and this is not in the sub directory.

Member Avatar for rohand
0
68
Member Avatar for simi pillai

this application contains 2 folders each of them contains webconfig files and iam using .net2005 the error shows when it runs in mozilla

Member Avatar for rohand
0
87
Member Avatar for simi pillai

Server Error in '/PrecompiledWeb4' Application. Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' …

Member Avatar for rohand
0
226
Member Avatar for simi pillai

Server Error in '/PrecompiledWeb1' Application. Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' …

Member Avatar for sunki_janareddy
0
376
Member Avatar for simi pillai

Server Error in '/PrecompiledWeb2' Application. ________________________________________ Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Unrecognized configuration section 'connectionStrings' Source Error: Line 10: <configuration> Line …

Member Avatar for Lusiphur
0
302
Member Avatar for nayana simi

Server Error in '/PrecompiledWeb2' Application. ________________________________________ Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Unrecognized configuration section 'connectionStrings' Source Error: Line 10: <configuration> Line …

Member Avatar for simi pillai
0
182

The End.