http://uniquesaiful.blogspot.com/
Name: http://uniquesaiful.blogspot.com/
Score: 765.03
Last Seen: 448 days, 17 hours, 33 minutes ago
Member Since: 7 July, 2010
DotNetShoutout
atom rss
2
Shouts

How to Write Data to a CSV File?

published 475 days, 22 hours, 58 minutes ago posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 477 days, 15 hours, 29 minutes ago
Tuesday, January 31, 2012 11:14:37 AM GMT Sunday, January 29, 2012 6:42:43 PM GMT
How to Write Data to a CSV File? On 12.01.29, In Programming, by uniquesaiful The article shows the work of parsing the rows from the dataset into a file stream using a comma delimiter. The article shows the work of parsing the rows from the dataset into a file stream using a comma delimiter. By loading the data into a dataset, you have access to metadata for the columns. You can retrieve the column name from the metadata when building the row headers for your export file. If the Overwrite parameter is... (more)
category: Web Dev | clicked: 20 | comment | | source: computersight.com
2
Shouts

ASP.Net State management

published 543 days, 55 minutes ago posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 548 days, 17 hours, 25 minutes ago
Friday, November 25, 2011 9:16:59 AM GMT Saturday, November 19, 2011 4:46:59 PM GMT
A cookie is a small amount of data that is stored either in a text file on the client file system or in-memory in the client browser session. Browser sends with cookies values with every page request to the same server. Cookies can be temporary or persistent. (more)
category: Web Dev | clicked: 32 | 1 comment | | source: codeasp.net
2
Shouts

Asp.net Web Site Peformance Enhancement Tips

posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 598 days, 22 hours, 46 minutes ago
Friday, September 30, 2011 11:25:42 AM GMT
Asp.net Web Site Peformance Enhancement Tips On 11.09.27, In Programming, by uniquesaiful Always use Page.IsValid property. Page.IsValid confirms that all validation controls in page returns valid. Execute server side code only when page is valdated. Use Page.IsPostBack property to minimize redundant processing. Confirm that only data is loaded on first time page load. Use HttpServerUtility.Transfer method. Use StringBuilder for large string manipulation. Avoid unnecessary type conversions. Us... (more)
category: Web Dev | clicked: 3 | comment | | source: computersight.com
3
Shouts

How Can I Query on Dataset?

posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 600 days, 22 hours, 45 minutes ago
Wednesday, September 28, 2011 11:27:05 AM GMT
How Can I Query on Dataset? On 11.09.27, In Programming, by uniquesaiful How can I query on dataset? Counts and SUMS are to be derived from the Dataset. In the following code example I have shown how easily you can query on DataSet in asp.net web application. In the first example I have shown the way of SUM operation and in subsequent code snippet I have shown the way of Count operation on DataSet. Try this code snipped while doing sum:private void ComputeBySalesSalesID(DataSet myDataSet){     // Pre... (more)
category: Web Dev | clicked: 1 | comment | | source: computersight.com
3
Shouts

How I Can Generate XML Documentation File of My .Net Application?

posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 600 days, 22 hours, 46 minutes ago
Wednesday, September 28, 2011 11:25:51 AM GMT
How I Can Generate XML Documentation File of My .Net Application? On 11.09.27, In Programming, by uniquesaiful Here I will describe two easy way for generating documentation file in .net application….. Here I will describe two easy way for generating documentation file in .net application: Way One: (From Visual Studio) The Generate XML documentation file property determines whether an XML documentation file will be generated during compilation. To set this property in visual studio follow followi... (more)
category: Web Dev | clicked: 0 | comment | | source: computersight.com
3
Shouts

Asp.net Web Site Peformance Enhancement Tips

posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 600 days, 22 hours, 47 minutes ago
Wednesday, September 28, 2011 11:25:15 AM GMT
Asp.net Web Site Peformance Enhancement Tips On 11.09.27, In Programming, by uniquesaiful Always use Page.IsValid property. Page.IsValid confirms that all validation controls in page returns valid. Execute server side code only when page is valdated. Use Page.IsPostBack property to minimize redundant processing. Confirm that only data is loaded on first time page load. Use HttpServerUtility.Transfer method. Use StringBuilder for large string manipulation. Avoid unnecessary type conversions. Us... (more)
category: Web Dev | clicked: 2 | comment | | source: computersight.com
2
Shouts

Asp.net Web Site Peformance Enhancement Tips

posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 601 days, 17 hours, 5 minutes ago
Tuesday, September 27, 2011 5:06:52 PM GMT
Asp.net Web Site Peformance Enhancement Tips On 11.09.27, In Programming, by uniquesaiful Always use Page.IsValid property. Page.IsValid confirms that all validation controls in page returns valid. Execute server side code only when page is valdated. Use Page.IsPostBack property to minimize redundant processing. Confirm that only data is loaded on first time page load. Use HttpServerUtility.Transfer method. Use StringBuilder for large string manipulation. Avoid unnecessary type conversions. Us... (more)
category: Web Dev | clicked: 1 | comment | | source: computersight.com
tags: Asp.Net performance, Speed, Web site, ASP.NET, web site speed
2
Shouts

The ?? Operator

published 715 days, 18 hours, 45 minutes ago posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 717 days, 2 minutes ago
Sunday, June 05, 2011 3:27:33 PM GMT Saturday, June 04, 2011 10:10:03 AM GMT
The ?? Operator On 11.05.13, In Software, by uniquesaiful The ?? Operator in C# This operator allows you to assign a nullable type if the retrieved value is in fact null. For example, assume you wish to assign a local nullable integer to 0 if the value returned from the GetInt() is null. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Test {     pu... (more)
category: Web Dev | clicked: 14 | comment | | source: computersight.com
tags: out, ref, Parameter
2
Shouts

Difference Between an Interface and Abstract Class

published 715 days, 18 hours, 45 minutes ago posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 717 days, 6 minutes ago
Sunday, June 05, 2011 3:27:33 PM GMT Saturday, June 04, 2011 10:05:57 AM GMT
Difference Between an Interface and Abstract Class On 11.05.13, In Programming, by uniquesaiful Difference between an interface and abstract class. Interface contains method definition – there is no implementation.  An abstract class some methods can be concrete.  In an interface, no accessibility modifiers are allowed.  An abstract class may have accessibility modifiers.  Feature Interface Abstract class Multiple inheritance A class may inherit several interfaces. A class may inherit only one ab... (more)
category: Web Dev | clicked: 20 | comment | | source: computersight.com
tags: Abstract Class, Difference, Interface
3
Shouts

Formatting Numeric Data in C#

posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 769 days, 23 hours, 28 minutes ago
Tuesday, April 12, 2011 10:43:56 AM GMT
When you need formatting for numeric data, .net supports following formatting options: 1.       C or c             – Currency format. 2.       D or d            – Decimal format 3.       E or e             – Exponential notation format 4.       F or f              – Fixed point number format. 5.       G or g            – General format. 6.       N or n            – Basic numeric format.Read more in Mathematics« The Shape of The EarthVideo-math: The New Video Free Tutoring for Math » 7.       X or ... (more)
category: Agile | clicked: 0 | comment | | source: scienceray.com
4
Shouts

Making Viewstate Secure

published 800 days, 7 hours, 6 minutes ago posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 805 days, 15 hours, 34 minutes ago
Sunday, March 13, 2011 3:05:45 AM GMT Monday, March 07, 2011 6:38:32 PM GMT
Making Viewstate Secure On 11.03.07, In Programming, by uniquesaiful Making ViewState Secure. One of the most common ways to store information is in view state. View State uses hidden field that ASP.Net automatically inserts in the rendered HTML of a web page. View state information is stored in a single jungled string that looks like this: As this value isn’t formated as clear text, many ASP.Net programmers assume that their view state data is encrypted. Actually, view state information is simp... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: computersight.com
2
Shouts

Gridview Rowediting or Rowdeleting Event Fires Twice Problem

published 935 days, 15 hours, 38 minutes ago posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 936 days, 21 hours, 20 minutes ago
Thursday, October 28, 2010 6:34:36 PM GMT Wednesday, October 27, 2010 12:51:46 PM GMT
Gridview Rowediting or Rowdeleting Event Fires Twice Problem On 10.10.24, In Programming, by uniquesaiful When working with ASP.Net Gridview control’s RowEditing or RowDeleting events, it fires twice if image is used in Edit or Delete CommandField. Many ASP.Net developers face this problem while working with Gridview controls. There is many post in different forum on this problem. Problem: When working with ASP.Net Gridview control’s RowEditing or RowDeleting events, it fires twice if image is used i... (more)
category: Web Dev | clicked: 6 | comment | | source: computersight.com
2
Shouts

T-sql Dynamic Paged Query Techniques

posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 986 days, 5 hours, 38 minutes ago
Wednesday, September 08, 2010 4:34:23 AM GMT
T-sql Dynamic Paged Query Techniques On 10.09.06, In Programming, by uniquesaiful T-SQL Dynamic Paged Query Techniques. T-SQL Dynamic Paged Query Techniques Here we will see how to write dynamic paged query using Derived Table and CTE. Simple paging query using Derived Table: CREATE PROCEDURE [dbo].[HrEmployeeGetPaged] AS BEGIN      SET NOCOUNT ONSET TRANSACTION ISOLATION LEVEL READ COMMITTED select * from ( select  rownumber() over(order by EmployeeId) as Row,* from HrEmployee ) as e where e.R... (more)
category: Data | clicked: 0 | comment | | source: computersight.com
3
Shouts

Adding Controls Programmatically

posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 1022 days, 6 hours, 33 minutes ago
Tuesday, August 03, 2010 3:39:06 AM GMT
Adding Controls Programmatically On 10.08.02, In Programming, by uniquesaiful Just as you can programmatically create an instance of any server control on an ASP.NET Web page, you can do the same with a user control. Just as you can programmatically create an instance of any server control on an ASP.NET Web page, you can do the same with a user control. To create an instance of a user control programmatically 1.     In the user control, be sure that the @ Control directive contains a ClassName attri... (more)
category: Web Dev | clicked: 0 | comment | | source: computersight.com
6
Shouts

Creating Client Script Dynamically

posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 1027 days, 4 hours, 8 minutes ago
Thursday, July 29, 2010 6:03:46 AM GMT
Creating Client Script Dynamically On 10.07.27, In Programming, by uniquesaiful In many cases, you can create the client script for your page declaratively, usually as a script block. However, you can also create client script dynamically. This is useful if the script depends on information that is available only at run time. For example, you might insert client script into…. In many cases, you can create the client script for your page declaratively, usually as a script block. However, you can also cr... (more)
category: Web Dev | clicked: 0 | comment | | source: computersight.com
6
Shouts

Passing Value and Auto Refresh Parent Window From Popup

published 1031 days, 17 hours, 1 minute ago posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 1034 days, 3 hours, 16 minutes ago
Saturday, July 24, 2010 5:11:12 PM GMT Thursday, July 22, 2010 6:56:01 AM GMT
Passing Value and Auto Refresh Parent Window From Popup On 10.07.08, In Programming, by uniquesaiful Passing value and auto refresh parent window from popup. Passing value and auto refresh parent window from popup Here I will show how to pass value from popup window to parent window and refresh parent window while closing popup. This is a common task and often asked in asp.net forum. In this example, I have taken two forms: Default4.aspx >Its Master page is  MasterPage.master (This is parent page) ... (more)
category: Web Dev | clicked: 0 | comment | | source: computersight.com
tags: popup, ASP.NET
3
Shouts

Show Client Side Alert Message From Server Side Code Even When Update Panel is Used

published 1035 days, 23 hours, 29 minutes ago posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 1037 days, 4 hours, 24 minutes ago
Tuesday, July 20, 2010 10:43:37 AM GMT Monday, July 19, 2010 5:48:19 AM GMT
Show Client Side Alert Message From Server Side Code Even When Update Panel is Used On 10.07.08, In Programming, by uniquesaiful Show client side alert message from server side code even when update panel is used.Show client side alert message from server side code even when update panel is used Developers might want to display client side message with information from server side to their users when they have completed some execution at server side. People may try in different way for this purpose. ... (more)
category: Web Dev | clicked: 1 | comment | | source: computersight.com
tags: alert, ASP .NET
3
Shouts

Export Gridview Data to Excel and Word

posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 1037 days, 5 hours, 14 minutes ago
Monday, July 19, 2010 4:58:07 AM GMT
Export Gridview Data to Excel and Word On 10.07.07, In Programming, by uniquesaiful Export gridview data to excel and word. Every software has a common requirement to export data to Microsoft Excel or Word format. I saw multiple on this topic in asp.net forum.  Here I will explain a simple way of exporting your gridview data to excel (.xls) or word (.doc) format when used with master page and updatepanel.  Firstly we will write html codes: Code behind:Now we wi... (more)
category: Web Dev | clicked: 3 | comment | | source: computersight.com
tags: GridView, export data, ASP.NET
4
Shouts

Master Detail Representation Using Nested Gridview

posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 1037 days, 5 hours, 16 minutes ago
Monday, July 19, 2010 4:56:36 AM GMT
Master Detail Representation Using Nested Gridview On 10.07.07, In Programming, by uniquesaiful Master Detail representation using Nested Gridview. Introduction A recurring task in software development is representing tabular data in master detail format. ASP.Net provides a number of tools for performing this task.  Here I will show how to use nested grid view to show detail data related to master table on asp.net web page. Technique Take a grid view that display data from master table. Create las... (more)
category: Web Dev | clicked: 6 | comment | | source: computersight.com
tags: Master Detail, GridView, ASP.NET
3
Shouts

Simple Way of Using Flash File in Asp.net Web Application

published 1035 days, 23 hours, 29 minutes ago posted by http://uniquesaiful.blogspot.com/http://uniquesaiful.blogspot.com/ 1037 days, 5 hours, 18 minutes ago
Tuesday, July 20, 2010 10:43:37 AM GMT Monday, July 19, 2010 4:54:31 AM GMT
Simple Way of Using Flash File in Asp.net Web Application On 10.07.07, In Programming, by uniquesaiful Simple way of using Flash file in ASP.Net web application. ou can easily use flash movie file in our asp.net web application. For this purpose I am using FlashControl.dll which is downloadable from here. Download free version. It works fine. First, you have to add this control to visual studio 2008 toolbox. To do this, put FlashControl.dll file to folder of your choice. I am kept it to C:Program Fil... (more)
category: Web Dev | clicked: 0 | comment | | source: computersight.com
tags: Flash, ASP.NET
Previous 1 2 Next