MyITBlog.com - IT Professionals Online Journal
 
  Home  |   Site News  |   About Us  |   Privacy  |   FAQ  |   Contact   Add Blog Entry  |  Login  |  Register   
 My Account
Username
Password
Remember me
Lost Password?


 Categories


Thivya's User Blog
Profile  |   User Blog  |   Votes  |   Friends
 


 Showing Page: 1 of 1Order by Date | Hits | Total Votes

0
Votes
Passing Optional Parameters to a Stored Procedure in Database   
by Thivya on 06 Mar 2006, 09:30
To pass a optional parameters to a stored procedure in SQL Server, declare the parameter with the default value. Create Procedure proc_Test @a int, @b int =5 -- Provided with the default value. as begin        Select @a, @b end Note: When using...
Total Hits: 1073      0 Comments Add Comment  



1
Vote
Displaying Grid Header in every page when Printing in Microsoft   
by Thivya on 03 Mar 2006, 00:55
Often we will have a requirement like printing the Grid header in every page when it's printed out. You can do this using Javascript, by just changing the Grid Header row style to "display:table-header-group" just give the below code in your page script section function print_header()...
Total Hits: 693      0 Comments Add Comment  



Copyright © 2008 MyITBlog.com