Tuesday, May 27, 2014

Stylish Jquery Notification in the ASP.Net C#

Step 1:-Download the jquery_notification.css file from the below url https://code.google.com/p/pccirebonnews/downloads/list?can=2&q=jquery_notification.css&colspec=Filename+Summary+Uploaded+ReleaseDate+Size+DownloadCount Note:-After downloading the CSS file You have to modify the image locations in that CSS file   Step 2:- Download or copy this file to .js file from this url jquery_v_1.4.js https://jquery-in-place-editor.googlecode.com/svn-history/r162/trunk/spec/support/jquery-1.4.4.js Step...
Read More »

SSRS report error while using in asp.net (The report definition has an invalid target namespace 'http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition' which cannot be upgraded)

Error      1              The report definition is not valid.  Details: The report definition has an invalid target namespace 'http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition' which cannot be upgraded.         RDLC File Employee.rdlc                ...
Read More »

How to checking the NLL value for the integer in ASP.Net c#

Step 1:- First write code in the button click like this int value = null; it will show error because normally not possible to assign null value to the int Step 2:- By using “?” we can able to assign the null values to the integer like int? value = null; for checking this process using the brake point the code and checking one by one code line if (value.HasValue == true) {     Console.WriteLine("True"); }  Step 3:- When  value.HasValue...
Read More »

SQL SERVER ALL DATE CONVERTION FOR SIMPLE UNDERSTANDING

All Date Convertion For Simple Understanding with output as discription name in SQL SERVER Step 1:- Open sql empty editer copy the below code select convert(varchar, getdate(), 1) as MonthDateYear select convert(varchar, getdate(), 2) as YearMonthDate_With_Dot select convert(varchar, getdate(), 3) as DateMonthYear select convert(varchar, getdate(), 4) as DateMonthYear_With_Dot select convert(varchar, getdate(), 5) as DateMonthYear_With_hyphen select convert(varchar, getdate(),...
Read More »

Simple way to creating the SSRS reports (Very Basic & Very Easy)

Very very simple steps with full of step by step screen shorts Step 1:- Open Microsoft visual studio 2008 File à New Project àReport Server Projectà Name it as “SampleSSRSReport” Empty solution explorer will display like Step 2:-Right Click the shared data source àAdd New Data Source Screen will display like Click Edit button for configure the data base connection...
Read More »