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 Mike Lewis 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. pgstein

    I AM A STARTER IN ASP.NET

    http://www.w3schools.com/aspnet/default.asp is what I used to get started
  2. pgstein

    ASP.NET and SourceSafe

    Hi, I am fairly new to .NET and completely new to ASP.NET. I recently completed a project and want to check it into SourceSafe to keep track of updates. Do I need to check in just the .sln and .suo files? Or do I need all the .aspx, .vbproj, .etc. files? Or both? Whatever someone else...
  3. pgstein

    .NET Framework version

    Hi, Dumb question, but how do I tell what version of the .NET framework is installed on a windows server 2003 machine? I go to start->control panel->add/remove programs and nothing is there. Also the same with asp.net. Thanks alot, any help is appreciated. Paul
  4. pgstein

    ASP.NET and IIS

    I have windows server 2003 installed. I think version 1.1 of the framework is installed, is that updated enough? Also, if it is installed, do you know if it will be listed under start->control panel->add/remove programs? It is not listed there, but I am almost 100% sure it is installed.
  5. pgstein

    ASP.NET and IIS

    Hi, I am trying to distribute my ASP.NET application to my webserver, but I keep getting an error saying the webpage cannot be found whenever I click a link to it. Is there a certain version of IIS that I need to run aspx pages? It currently has IIS 5.0 on it. Also, do you know if there is...
  6. pgstein

    change label properties dynamically

    Hi, Is there any way to change label properties dynamically? Basically I have three labels: label1, label2, and label3. What I basically want to do is: for i = 1 to 3 label & i.visible = true next i I know that doesn't work, but is there anyway to do something similar? I am trying to...
  7. pgstein

    ASP.NET and chart control

    Nevermind, i found a free webchart control to do the trick.
  8. pgstein

    ASP.NET and chart control

    Hi, What I am trying to do is make a webpage that hits a database, and makes a chart based on the data. The problem I am having is that it seems I can only hit the database on the server-side, but can only edit the chart on the client-side. The only way I could think of getting around this...
  9. pgstein

    Passing variables from vbscirpt

    thanks both of you, Ill check it out monday morning.
  10. pgstein

    Passing variables from vbscirpt

    (Sorry I got pulled away for a minute) Your code works great. I can't thank you enough for helping me out. I really appreciate it.
  11. pgstein

    Passing variables from vbscirpt

    Thanks alot, I really appreciate it. Take your time, Im in no hurry.
  12. pgstein

    Passing variables from vbscirpt

    I cannot get it to work, let me explain exactly what I did. 1. In my project I created a new page called MyDatePopup.aspx, and used the html you gave me. 2. On my main page, called main.aspx I added the function, and then adding the button.attribute part to call it. 3. I changed...
  13. pgstein

    Passing variables from vbscirpt

    Your exactly right. There were two ways I could think of doing it. Either having javascript redirect to the new page, or passing a variable back and using response.redirect in ASP.NET. Either way is fine, but I cant get either to work. Any code you could help me with I would apprecitate...
  14. pgstein

    Passing variables from vbscirpt

    okay, I am an idiot. Maybe I dont need to pass it after all. I am using the window.navigate(URL) in javascript. When I use window.open(URL), it opens the correct page in a new window, but when I use window.navigate(URL), the ASP.NET page just refreshes itself after the event. Aslong as I...
  15. pgstein

    Passing variables from vbscirpt

    Thanks for the response, I am not tied to vbscript. I can just as easily code it in javascript. Is there a way to pass a variable back using javascript?
  16. pgstein

    Passing variables from vbscirpt

    I am creating an ASP.NET project, and what I need to do is have the user click a button, he is then prompted with a date, and then he is transfered to the correct page based on his input. I am using VBScript to generate the input box, but the problem I am having is when I use "window.open" in...
  17. pgstein

    crystal reports

    oh..i got it. I didn't realize you needed all of Visual Studio.NET, not just Visual Basic.NET. Thanks guys.
  18. pgstein

    crystal reports

    Hi, Does anybody know off hand which versions of .NET come pre-packaged with Crystal Reports? I know .NET 2003 and 2005 do, but I am using just VB.NET and can't find anywhere to add a CR object to my project. If not do I have to install it? Thanks! Paul
  19. pgstein

    any SQL QUERY masters?

    hmmm...thats interesting. it works though, so I guess Ill leave it. Thanks for your help, im sure Ill have more ?s later.
  20. pgstein

    any SQL QUERY masters?

    Hi, I am trying to write a query using SQL. I have two tables that are as below: table miscdata contains: day, heatid What I am trying to do is to get the number of heatids for a date range. I can get it to return the count of all the heatids for the range, but I need a row for each day in...

Part and Inventory Search

Back
Top