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. timothy

    Deployment of an app with webservice

    I have a web application that I wrote that uses a web service I also wrote. Now I have to move the application and web service to test, then eventually to production. What is the right way to do this? My assumption is when I move the application to test I will need to change url of the...
  2. timothy

    checkboxlist

    Set the checkbox contorls enabled property to true or false. If you want it to set it when some other controls event fires you may need to set Autopostback=true on that control.
  3. timothy

    Test whether string is valid currency

    Can you validate the value on the way in? You really shouldn't allow the value to make it this far if possible. try - catch can take care of any thing that you don't catch with validation. I'm sure given a few mins we could come up with a way to check it.
  4. timothy

    <UL>'s and UI How to start?

    Try the repeater control http://216.239.51.104/search?q=cache:JZncbcJSiKcJ:www.sitepoint.com/article/1014+.net+repeater&hl=en&lr=lang_en
  5. timothy

    Webservice, XML, fixed-len file

    Wow, that's the only way to receive a file? Ok, so I am going to make a method the receives a string, parse it and send the results back in a DataSet that way the consumer will get an XML file they can parse. I guess I will have to tell the consumer to read the text file into a string var then...
  6. timothy

    Webservice, XML, fixed-len file

    Thanks the tutorials were a big help. I just did a web service that passes a string around and one that passes a dataset back. But what I really want is escaping me. I need to receive a text file from the consumer. What type am I receiving in my method parameters for the text file? I tried a...
  7. timothy

    Webservice, XML, fixed-len file

    I've never done a webservice before. Just looking for tutorials or sites that have information that can help with the task below... I need to build a web service that can receive a plain fixed len text file and return a response in an XML file. My customers should be able to build a web page...
  8. timothy

    Getting to a cell inside a datagrid, templateItem, td

    Hi anyone know how I can get to the cell: "<td><%# DataBinder.Eval(Container.DataItem, "USL")%></td>" in the below code to change it? For example: This is how deep I have to go in the DataGrid (highlighted in blue)... <Columns> <asp:TemplateColumn> <ItemTemplate> <table> <tr> <td><%#...
  9. timothy

    'System.Web.HttpRequest.QueryString' denotes a 'property' where a 'met

    Try this... Request.QueryString["ID"].ToString(); if that doesn't cut it, check the value of "ID", make sure it's a good one. good luck
  10. timothy

    DataGrid with Edit and Multi Select Listbox

    Thanks, how can I get to the cell I need to change it? For example (dif are of code same type of issue)... This is how deep I have to go in the DataGrid (highlighted in blue)... <Columns> <asp:TemplateColumn> <ItemTemplate> <table> <tr> <td><%# DataBinder.Eval(Container.DataItem...
  11. timothy

    DataGrid with Edit and Multi Select Listbox

    I have a ASP.Net DataGrid with edit columns. I bring in a list of users with info like account number, custid etc. Everything works fine. Now I want to add an edit column that contains a multiple select listbox. When the listbox loads I want to select the appropriate items for the user. Anyone...
  12. timothy

    run an exe from C# application

    Thanks for your help! I completed the project yesterday using your suggestion.
  13. timothy

    run an exe from C# application

    I have an older product from Sybase that I need to fire off from a c# application. Normally the exe would be run from dos with some args passed in. How can I fire off this program from C#? I haven't found any docs on the subject. I'm sure there must be someone else that has had to deal with...
  14. timothy

    Can't find selected items in a listbox

    That did the trick thanks!
  15. timothy

    Can't find selected items in a listbox

    I have a listbox that I populate it from the database; then on submit check for selected items. It always returns false (not selected). However if I hardcode the values into the listbox I do find the correct selected values. Any idea why this would be? private void Page_Load(object sender...
  16. timothy

    ASP controls no properties, not connected

    Ok, so I closed VS.NET and opened the project again and all is fine. Thanks
  17. timothy

    datagrid is confused.

    Give us some code, also check the name of the button, make sure it's not named "submit" (had a friend do that before drove me nuts until I relized the name was submit).
  18. timothy

    ASP controls no properties, not connected

    I have a web page that when I click on a control the property window is empty. Not only that but when I double click a control or page in design view the event is not created in the code behind, in fact nothing happens. Seems like the page is not attached to the code-behind, however in the...
  19. timothy

    database | class | reuse

    I thought it would be nice to setup a database "accessor" (DBA) class where you could instantiate it, provide a connection string and use it's methods to do all of the database tricks. This is a sample of what I have. I'll describe the problem below... This is a method that returns a datareader...
  20. timothy

    Calling Javascript functions in an asp.net page

    That's exactly what I was looking for. Thanks

Part and Inventory Search

Back
Top