Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for peggie1990

Hi, May I know how to convert system.data.datatable to string? [CODE]foreach (DataRow row1 in dtSelectedContracts.Rows)//select any row of it, reference column { string contractID = row1[0].ToString(); //populate the critical terms datatable if (selectedContracts != null) { selectedContracts = vrmdb.Get_CriticalTerms(contractID).Tables[0]; } else { foreach (DataRow row2 in vrmdb.Get_CriticalTerms(contractID).Tables[0].Rows) { selectedContracts.ImportRow(row2); } …

0
63
Member Avatar for peggie1990

Hi all, currently I am doing an online store project using an example from one of your tutorials. In the grid view is populated with data and at the below of the grid view, there is a row of empty fields populated below. After user have enter all the necessary …

Member Avatar for Mitja Bonca
0
126
Member Avatar for peggie1990

Hey guys, currently I am doing on insert products into the database. For the insert form in jsp, I am making use of hashtable in multi part form so that I can upload images as well as insert data into the database. I can insert thr details as well as …

Member Avatar for Thirusha
0
96
Member Avatar for peggie1990

Hey guys do you have any samples that uses hashtable in multi part form to insert image and information into database. In the jsp form, there is some codes regarding on hashtable that is input into by my tutor. However, I do not understand about it. My tutor taught me …

0
51
Member Avatar for peggie1990

Hey, I really need you guys help as I had been searching info on displaying blob images from database for weeks:( I tried to add in the code that i think would display however it only display the path instead if the image. [CODE]<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@ …

Member Avatar for peggie1990
0
1K