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

    Getting old .NET pages ready for today's web

    You may consider this the dumb ? of the morning (or afternoon, evening, etc.), but I'm in need of major assistance on this. Long ago (say, over a decade), I learned the .NET framework on the job and figured out how to build ASPX pages with VB code. Due to financial issues at the company I...
  2. JoeCool32

    Passing parameters in VB

    Bumping up so link and Zarcom don't forget me. JJ [peace] "Ignorance and prejudice and fear walk hand in hand" - Witch Hunt, by Rush
  3. JoeCool32

    Must I use Visual Studio.Net for ASP.Net?

    jcisco and jfrost get pink stars for their efforts. Thanks to the j's. JJ [peace] "Ignorance and prejudice and fear walk hand in hand" - Witch Hunt, by Rush
  4. JoeCool32

    Must I use Visual Studio.Net for ASP.Net?

    So you just download WebMatrix onto a PC and it will work like VS, but for free? JJ [peace] "Ignorance and prejudice and fear walk hand in hand" - Witch Hunt, by Rush
  5. JoeCool32

    Passing parameters in VB

    link: I'll keep your comments in mind. This is for my lead's benefit but he won't be back 'til Friday. Zarcom: This question came from our efforts to be able to delete a record off a datalist and the SQL table it came from. We've been trying to pass the value of the rec's primary key to a...
  6. JoeCool32

    Passing parameters in VB

    Is it possible to pass parameters from server-control events to server-side procedures? If it is possible, how is it normally done? JJ [peace] "Ignorance and prejudice and fear walk hand in hand" - Witch Hunt, by Rush
  7. JoeCool32

    Proper way to reference a stored proc.

    Thanks, everyone. On a side note: I checked this thread for email notification but haven't gotten any emails saying any of you 3 had responded. Is there something wrong w/ that system that I wasn't aware of? JJ [peace] "Ignorance and prejudice and fear walk hand in hand" - Witch...
  8. JoeCool32

    Proper way to reference a stored proc.

    SonOfEmidec: Let me see if I understand you right. In the sub where I have my SQL statement I define nnn as, say, an integer, then I put it in the codeline as you did. Is that right? JJ [peace] "Ignorance and prejudice and fear walk hand in hand" - Witch Hunt, by Rush
  9. JoeCool32

    Proper way to reference a stored proc.

    I’ve got a stored procedure that I’m trying to reference in my VB code. I’ve tested it in the Query Analyzer and it works fine, but when I run it in my program it bombs. Here’s my proc: CREATE PROCEDURE deleteContactFeedback @contactID_pk int AS DELETE FROM contactUs WHERE contactID_pk =...
  10. JoeCool32

    Displaying record # for each record in a datalist

    I’ve got a working datalist going; the only thing is that I can’t seem to display properly the record number for each record. I’m trying to use a For...Next loop within an If Not Page.IsPostBack and I keep getting an error. Here is my code. Private Sub Page_Load(ByVal sender As...
  11. JoeCool32

    Deleting rows

    When you bring in SQL records onto an .aspx page, is it possible to delete a row off the page (using VB) without deleting the record itself from the SQL table? [neutral] JJ [peace] "Ignorance and prejudice and fear walk hand in hand" - Witch Hunt, by Rush
  12. JoeCool32

    Paging data

    I'm trying to make a page that will take SQL records and present them as it's done in a search results page (essentially paging data): with links to the previous and next 20 records, plus a count of how many records there are on the current page and also the ability to delete a record off the...
  13. JoeCool32

    Bringing up .exe programs in .aspx pg

    Does anyone know how to make a button or linkbutton open up an executable on my computer? Like my calculator, or some other .exe application?? [neutral] JJ [peace] "Ignorance and prejudice and fear walk hand in hand" - Witch Hunt, by Rush
  14. JoeCool32

    Matching date values w/ dropdown values

    Note: I had been trying to use FindByValue and/or FindByText on these; they had worked on my other ddl's in the program, but not these. The key parts of the code are like so: Dim dateInfo As New System.Globalization.DateTimeFormatInfo() Dim myDate As DateTime =...
  15. JoeCool32

    Matching date values w/ dropdown values

    In my program, I have 6 ddl's filled programatically with date info (month, day & year) in my client-side code. Based on a selection in a listbox, the ddl's show date info for the selection based on a SQL SELECT statement in my (VB) server-side code; the problem is the date parts returned had...
  16. JoeCool32

    Inserting date values into SQL

    Well, that problem was solved![thumbsup2] While we're at, maybe you could help me with a related issue. When I originally populated the dropdowns from a SQL SELECT stmnt, the date parts returned had no value. I wanted to match what was returned with values I had put in the dropdowns...
  17. JoeCool32

    Inserting date values into SQL

    As Mr. Spock[bigears] would say, "Fascinating." Certainly looks promising. I'll give it a whirl. BTW, I know I put in a lot of code; my SQL statements need a lot to be put in. JJ [peace] "Ignorance and prejudice and fear walk hand in hand" - Witch Hunt, by Rush
  18. JoeCool32

    Inserting date values into SQL

    If this isn't in the right subject forum, feel free to move it to a more appropriate one. This involves ASP and VB issues as well as SQL. I'm trying to insert values from dropdown lists into a SQL Field who's data type is 'datetime'. Since the values from the lists are string, I've tried...
  19. JoeCool32

    Comparing file names

    I'll try that next week. Right now with the For...Next loop my intCounter is returning server errors because its out of range. Thanks for your help. JJ [peace] "Ignorance and prejudice and fear walk hand in hand" - Witch Hunt, by Rush
  20. JoeCool32

    Comparing file names

    You know, I had a For loop in there somewhere but it kept returning mutliple instances of every file name. I don't know if it was in the spot you suggested, but I'll try it at that point and let you know if it worked. JJ [peace] "Ignorance and prejudice and fear walk hand in hand" -...

Part and Inventory Search

Back
Top