arrrgghhh - please help

Dasmunchen

New member
Joined
Mar 20, 2003
Messages
3
hey all, im trying to build a database driven bulletin board in c#, and i really need some help here. I am using access and visual studio.NET. all i want to do is copy the primary key value from the dbase to another column. the primary key is an int, but i need to convert to a string so i can rowfilter it into a dataview and display it in a datatable. so far i have 4 pages, 1- topics, 2-posts, 3-Newtopics and 4-replies.
in the dbase i have two tables in the dbase, topics and replies. on page 1 i have 1 datagrid showing all of the topics and i am using the edit function as a view button to get the primary key and pass to page 2 with a session variable. page 2 has 2 datagrids, where the replies are rowfiltered in a dataview on a datagrid. i am trying to get the second datagrid to show only the topic that was selected from page 1. here is the problem, also on page 1 there is a button to add a new topic, which takes you to page 3, now, on page 3 when i add a topic and post it i need to copy the primary key to another column called TopicID (STRING)to enable me to filter for the view in page 2.
maybe this is the completely wrong way to go about it, but i have discovered that the rowfilter will only accept a string to sort by, this is why TopicID is a string.
 
Post the code you have already tried and failed with as well as the error message you are receiving. Need more information on what you have tried before I can assist you.

--Sean
 
thx max, but i managd to figure it out about an hour after the post by using a simple parameterized sql statement
regards,
das
 
Back
Top