Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Jouster

    Access serialized form data with javascript and ASP

    Im not sure if this is the right forum, but here it goes. Im using ajax code to submit serialized data to my server side webpage: $(document).on('pageinit', '#login', function() { $(document).on('click', '#submit', function() { // catch the form's submit event if($('#fname').val().length >...
  2. Jouster

    How do i process serialized data with Javascript and ASP?

    Im not sure if this is the right forum, but here it goes. Im using ajax code to submit serialized data to my server side webpage: $(document).on('pageinit', '#login', function() { $(document).on('click', '#submit', function() { // catch the form's submit event...
  3. Jouster

    Catch Soap exception

    Hello, I have written a small web service and a client to consume it. I am intentionally throwing a soap exception so i can see if it is working. In my client application it sees it as an exception and not a soap exception.Here is the code for the client program. Imports...
  4. Jouster

    SQL Query to read two prces from table.

    I am only looking at 2 price lists at the moment, but there are like 15 price lists available to use in this software. Thanks, Rick
  5. Jouster

    SQL Query to read two prces from table.

    I've been trying to figure this out all morning with little results. Maybe someone here can help me. Have a table (IPrices) like so: Item Code, Price List , Price 10001 1 100.00 10001 2 200.00 I need an output to show both prices on one row like: ItemCode ...
  6. Jouster

    Convert to foreign language

    This may be a long shot, but I have some asp pages written in Javascript and now I am being asked if there is a way to automatically change the languge from english to french and ect. Is there a plug-in or active x that anyone knows of that will do this? Is there something already built in to...
  7. Jouster

    Hyperlink control

    Unfortunately the site and the database are on remote servers and I can't use an IDE at this point. I have found that the code i have above, that I got from MSDN, works if I set AutoGenerateColumns = True. I will find a work around with this option. Thanks for all the help.
  8. Jouster

    Hyperlink control

    in the _RowDataBound event as shown above. I'm editing the page from a text editor. The compiler message is in the browser when i try to view the page.
  9. Jouster

    Hyperlink control

    Good try but here is the error: Compiler Error Message: CS0117: 'System.Web.UI.WebControls.GridViewRowEventArgs' does not contain a definition for 'Item'
  10. Jouster

    Hyperlink control

    Sorry, should have posted the code... myConnectionString = new OleDbConnection(); myConnectionString.ConnectionString= "Provider=SQLOLEDB.1;database=PFA_Live;Server=xxxxxx;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Use Encryption for Data=False;Tag with column...
  11. Jouster

    Hyperlink control

    I am binding a table and an asp:gridview.
  12. Jouster

    Hyperlink control

    This is the part I don't understand completely(changed to c#): DataRow dr = (DataRow)dataitem; Compiler has no idea what dataitem is. and the table i did the first query to databind to the grid is not in the scope??
  13. Jouster

    Hyperlink control

    Sorry jbenson001 I don't understand what your trying to do. I am new to ASP.Net, but know ASP very well. I am reposting my event code here: void RefurbPartsListGrid_RowDataBound(Object sender, GridViewRowEventArgs e) { if(e.Row.RowType == DataControlRowType.DataRow)...
  14. Jouster

    Hyperlink control

    I've tried: DataBinder.Eval(Container, "DataItem.ItemCode") and dt.Rows[e.Row.RowIndex].Cells[0].Value is that what you mean? Neither one worked.
  15. Jouster

    Hyperlink control

    I think I'm getting close, but the data from the cell is not showing up. Here is the code: void RefurbPartsListGrid_RowDataBound(Object sender, GridViewRowEventArgs e) { if(e.Row.RowType == DataControlRowType.DataRow) { HyperLink h =...
  16. Jouster

    Hyperlink control

    Thank you, your help is much appreciated as I am new to asp.net.
  17. Jouster

    Hyperlink control

    Could you possibly point me to some examples of these? Thanks, Rick
  18. Jouster

    Hyperlink control

    Hi, New to the asp.net and I'm trying to figure out how to dynamically add text to the navigateUrl property. I am databinding to a grid and i want a column for hyperlinks. Here is the code I have: <asp:TemplateField HeaderText=""> <ItemStyle...
  19. Jouster

    How to set up my data grid

    OK, that may work. How can I add items to a datagridcombobox column at runtime? That would complete my mission at this point.
  20. Jouster

    How to set up my data grid

    Hello, I'm having some difficulties and wondered if someone could stear me in the right direction. Here is what I need to do. I have an application so that a user logs in at startup. From the log in I know what dept they are from. Once I know what department they are from I want to set up the...

Part and Inventory Search

Back
Top