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 TouchToneTommy 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: *

  • Users: wsmall73
  • Content: Threads
  • Order by date
  1. wsmall73

    Webservice changes not being reflected

    I have made several changes to a webservice that I am working on... however the methods are not appearing (only the old method) when I view the methods in the browser the only ones that appear are the old ones... I have cleared my vswebcache and rebuilt to no avail.. any ideas?
  2. wsmall73

    string.length

    I am trying to write a custom validator using javascript and I am simply trying to determine the length of what should be a string... function ClientValidate(source,args) { alert(""+args.Value.Length); args.IsValid=true; } I added the ""+ to try to ensure that it was forced to a...
  3. wsmall73

    Granting indentity_insert to db_datawriter

    Is there anyway to grant identity_insert to db_datawriter? TIA -W
  4. wsmall73

    Screen Scrape 3270 Session from the Web

    I am looking for a way to screen scrape a 3270 session from the web and wondering if anyone could provide any insight... the application also writes out a flat file to client but I can't think of anyway to obtain the information in that file as I can't access the file from the browser... any...
  5. wsmall73

    ParseFloat

    I am using ParseFloat to convert a string to a decimal however... 12..87 and 12.97... pass this validations... any ideas to get around this...
  6. wsmall73

    IDE ASSISTANCE

    Can anyone tell me which option I need to turnoff to keep the ide from verifying my code as I go.... I connected to a rather large solution on a remote server and I can't change one variable without having to wait 5 seconds for it to verify the rest of the code.. make small change 5 secs...
  7. wsmall73

    Reading log files

    Does anyone know if there is a way to read a log file on a client pc from an asp.net. One more easy requirement... I can't modify the settings on the client.
  8. wsmall73

    Crosstab Datawindow

    I am creating a report for displaying parts by category for particular vehicles. row info = vehicle number column = category_no value = cost I want to be able to drill down by clicking a trouble category and looking at the individual records. Is there any way to obtain the category_no in this...
  9. wsmall73

    Time Control

    I was wondering if anyone has experience or knowledge of or with a time control for the web. I am building an online timesheet application and the interface is less than user friendly when I have to force the user to enter start and stop times using textboxes. Does anyone know of a third-party...
  10. wsmall73

    multi-select dddw assistance required =)

    I am attempting to create a dddw that will allow me to select multiple entries ( ie divisions) to be passed to a stored procedures for reporting. What I have attempted is to add a checkbox field that is toggled on an off when a row is selected.... it works pretty well but I have coded this...
  11. wsmall73

    System.IO.File.Delete

    does anyone know if you can use wildcards or have used wildcards successfully with System.IO.File.Delete? what I am trying to avoid is having to code for every possible scenario .pdf,.xls,.doc, .ppt etc.... I just want to delete all documents with a particular name....regardless of the extension.
  12. wsmall73

    ReRender/Reload/Refresh User Control

    I am attempting to create a usercontrol that display real statistics / reporting for specialists and at this point I am looking for some suggestions on how to proceed. I have created a user control that accesses a XML web service for it's data. I would like the control to refresh it's data...
  13. wsmall73

    UserControl- Refresh - Fragment Caching....

    Is there a way to refresh a single user control without having to refresh the entire page??? Or do I have to fragment cache the other user controls on the page and use a meta refresh or javascript refresh??? TIA -Wayno
  14. wsmall73

    I am hoping that someone can ass

    I am hoping that someone can assist me with this one. I am trying to upload documents into SQL Server to include as a subreport within my crystal report. I have the file (in this case a text file) uploaded to an image field in the database. I create the DataSet as a xsd file and I can view...
  15. wsmall73

    Custom Validator in DataGrid EditItem

    I am trying to use a custom validator inside of a Datagrid...(forgive me I am going off of memory here)- no client side javasript. <asp:CustomValidator id=&quot;cv_categories&quot; runat=&quot;server&quot; CommandName=&quot;ServerValidate&quot;> </asp:CustomValidator> cs- public void...
  16. wsmall73

    Controls.AddAt in DataGrid

    After adding a literal control using the AddAt Method I can no long access those controls that are in the controls list after the insert Ex. AddAt(14,blahblah) I can not access the controls that I would assume were in the 15, 16,17 positions using...
  17. wsmall73

    Almost there...adding new literal control to datagrid

    I am implementing adding a popup calendar to a datagrid and I have everything working as it should however I would like the image that fires off the popup to appear in a different location withing my datagrid. Int32 iLastCellIndex = e.Item.Cells.Count-1; String sLink2 = &quot;<a...
  18. wsmall73

    Make invisible a datagrid item

    Based on level of the user I would like to disable or make invisible a hyperlink to another page... <ItemTemplate> <TABLE><TR><TD> <asp:HyperLink ID=&quot;mylink&quot; ageUrl=&quot;images/arrow_right.gif&quot; NavigateUrl='<%#&quot;ReviewIt.aspx?task_no=&quot;+...
  19. wsmall73

    Skip Validation....

    I am trying to get some reuse out of a window. If in the querystring I pass a task_no the page runs using that task_no (executing stored procedures etc) ... the task no being shown as a label on the webform. if the task_no is not included... I want the user to be able to search by entering a...
  20. wsmall73

    Conditional display of controls....

    I am trying to allow certain users to view data that is 'standard' and edit it..... conditionally when it is non-standard I just want to show the data as table data within the table. I am trying to conditionally display either static text or a drop-down list box. I am not sure if this is heading...

Part and Inventory Search

Back
Top