I am trying to display the information to a form using TableAdapter. I created a query GetTicketInfo(@TicketID) in the xsd. The ticket id is passed from the dashboard page.
int intTicketID = int.Parse(Request["TicketID"].ToString());
AppTableAdapter.ticketTableAdapter UpdateTicket = new AppTableAdapter.ticketTableAdapter();
UpdateTicket.GetTicketByTicketID(intTicketID);
Question:
How do I display
lblCreator.Text = ?
lblTicketType.Text = ?
Please advice.
Thanks,
Steve
int intTicketID = int.Parse(Request["TicketID"].ToString());
AppTableAdapter.ticketTableAdapter UpdateTicket = new AppTableAdapter.ticketTableAdapter();
UpdateTicket.GetTicketByTicketID(intTicketID);
Question:
How do I display
lblCreator.Text = ?
lblTicketType.Text = ?
Please advice.
Thanks,
Steve