Red Souldier

This user hasn't shared any biographical information


Posts by Red Souldier

ASP.NET: How to read XML Data String to Dataset

December 2, 2009 - 1:54 pm

Tags: , , , , ,
Posted in VB.NET | No comments

The output of XML String: <?xml version="1.0" encoding="utf-8" ?> – <NewDataSet> – <Table> <CONDOM>Durex</CONDOM> <SIZE>XL</SIZE> <QTY>123</QTY> <COLOR>616</COLOR> </Table> </NewDataSet> In order to convert from XML to dataset, this is the code:

  • Share/Bookmark

ASP.NET: Convert String XML to XML Node

December 2, 2009 - 1:42 pm

Tags: , , , , ,
Posted in VB.NET | 1 comment

For example I have string value like this: <?xml version="1.0"?> <Product type="Condom"> <CondomName>durex</CondomName> <ExpDate>False</ExpDate> <Type>False</Type> <Color>False</Color> <Qty>False</Qty> </Product> Since this this is a string value, so we need to convert to xml node to be able to process. So this is the code:

  • Share/Bookmark

ASP.NET: How to use Javascript alert inside AJAX UpdatePanel

December 2, 2009 - 1:12 pm

Tags: , , , ,
Posted in VB.NET | 1 comment

Normally when we add Javascript Alert to our asp.net it will be like this: Page. ClientScript.RegisterStartupScript(this.GetType(), "winPop", "alert(‘Update is successful’) but this code is not working if you using the code inside update panel. So in order to add javascript in update panel you need to register you client script to your script manager as [...]

  • Share/Bookmark

ASP.NET – Convert CSV to Dataset

July 17, 2009 - 6:29 am

Tags: , , , , , ,
Posted in VB.NET | 1 comment

In this post I will show you how to convert from .csv files to dataset in ASP.NET

  • Share/Bookmark

Go green and Recycle design for E-mail signature V1

July 11, 2009 - 9:03 am

Tags: , , , , ,
Posted in Go Green | 2 comments

These are some of my vector design that can be used for e-mail signature

  • Share/Bookmark

ASP.NET Cross Tab / Pivot from Data Table

June 22, 2009 - 7:16 am

Tags: , , , , ,
Posted in VB.NET | 9 comments

Sometimes when you working with the large data, you might want to display the data in pivot table / cross tab. Crystal report have a very nice wizard to make our life easier to create cross tab, but not in vb.net

  • Share/Bookmark

Create Multiple row / group header in gridview ASP.NET

June 12, 2009 - 2:57 am

Tags: , , , ,
Posted in VB.NET | 1 comment

This article shows how to create multiple row / group header in gridview asp.net

  • Share/Bookmark

Connecting asp.net to Sql server 2005 stored procedures into dataset

June 10, 2009 - 7:20 am

Tags: , , , , , , ,
Posted in VB.NET | No comments

This article demonstrates how to use ASP.NET and ADO.NET with Visual Basic .NET to create and to call a Microsoft SQL Server stored procedure with an input parameter and an output parameter.

  • Share/Bookmark

Connecting Crystal Report ASP.NET using Dataset

June 5, 2009 - 5:59 am

Tags: , ,
Posted in Crystal Report | No comments

Do you have so many problems with user logon database when you try to connecting asp.net to crystal report using SQL Server 2005 store procedure or table.

By using dataset, you dont have to worries about connection to sql server in crystal report.

First, you need to add or create new item of dataset object. Dataset object format as .xsd
Inside the dataset object, right click and add new datatable, after that right click on datatable and add column.
You can set the datatype as well.

  • Share/Bookmark