Program.cs file using System.Configuration; using System.Data; using System.Data.SqlClient; using System.IO; namespace ConsoleApplication3 { class Program { static void Main(string[] …
Accordion Panel Tips and Tricks in ASP.NET
Default.aspx page Accordion Tips and Tricks .accordionHeader { color: white; background-color: #719DDB; font: bold 11px auto "Trebuchet MS", V…
String Functions in C
String Function: The standard library for C string functions is string.h. This header file defines tons of useful string manipulation functions including: strcmp strcat strcpy strlen strcmp: strcmp()…
Program to copy the contents of one file into another using fgetc and fputc function
#include #include void main() { FILE *fp1,*fp2; char a; clrscr(); fp1=fopen("test.txt","r"); if(fp1==NULL) { puts("cannot open this file"); exit(1); } fp2=fopen("t…
50 ASP.NET interview questions and answers
1. What is ASP.Net? Ans: It is a framework developed by Microsoft on which we can develop new generation web sites using web forms(aspx), MVC, HTML, Javascript, CSS etc. Its successor of Microsoft Ac…
What is JavaScript
JavaScript is a conservative, item based scripting language for Web pages. JavaScript code installed into your HTML pages can improve them with numerous fascinating components, from swapping pictures…
What is JQuery
JQuery is a JavaScript framework by using JQuery our program become more easiest and more effective. JQuery simplifies the use of JavaScript. JQuery is not a language it is handwritten library file u…
ASP.NET
- Accordion Panel Tips and Tricks in ASP.NET07 Apr 20150
Default.aspx page <%@ Page Language="C#" AutoEventWireup="true" CodeF...
- 50 ASP.NET interview questions and answers07 Apr 20150
1. What is ASP.Net? Ans: It is a framework developed by Microsoft on which we can develop new g...
PHP
C Programming
- String Functions in C07 Apr 20150
String Function: The standard library for C string functions is string.h. This header file de...
- Program to copy the contents of one file into another using fgetc and fputc function07 Apr 20150
#include<stdio.h> #include<process.h> void main() { FILE *fp1,*fp2; char a; ...
- Functions in C language05 Apr 20150
What is function, Types of functions and example of functions. In simple word function is...
- C language Overview and first Program in c to print Hello World02 Apr 20151
As we know that C is a high-level language or we can say general-purpose langauge that was dev...
JQuery
- What is JQuery06 Apr 20150
JQuery is a JavaScript framework by using JQuery our program become more easiest and more effect...