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

    Publishing a Local ASP.NET Project to the Web

    ISP/Error message shows: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET Version:1.1.4322.2300 The ISP Server is a Hybrid, ie not really a windows machine. It looks like they could be the problem. If they tell me dlls are not allowed, is there another way to compile the project...
  2. xcalibre

    Publishing a Local ASP.NET Project to the Web

    Hi Everyone, This should be a simple thing, but I am stumpped (I even searched the Forums). I have a web application on my development machine. I am now trying to move/publish/copy/whatever it to my ISP. What I don't want to do is copy the whole project up (source code and all). I compiled...
  3. xcalibre

    Can I even do this? ASP.NET controls and dynamic access

    Ok... Found it... the FindControl was the clue I needed. Then a few examples/searches later, here's the working code (in case anyone else needs it). Assuming you've already done a datareader.read (my rdr): dim x as integer for x = 0 to rdr.FieldCount - 1 Dim c as Checkbox If...
  4. xcalibre

    Can I even do this? ASP.NET controls and dynamic access

    Isadore, thanks for the post. I have done a few searches (here and on Google) but to no avail. I'll take a look at this DirectCast command as well as see if I find a FindControl command for the Form/Page. Certainly if others could give their insight, I'd appreciate it. So far, I'm doing it...
  5. xcalibre

    help! set selected items in listbox selected from database items

    Just out of curiosity... is your codebehind supposed to reference "jobtypes" or "jobtitles"?
  6. xcalibre

    Can I even do this? ASP.NET controls and dynamic access

    Hi everyone, I am stumpped... I have a long list of checkboxes that I have saved their states to a database. If a record for our particular date is in the database, I want to load up all the states to each checkbox. Instead of manually doing cbItem1.value = CSTR(rdr("Item1)) for each item I...
  7. xcalibre

    Displaying Application Version (AssemblyVersion)

    That was my problem... exactly how to reference the assembly. I was in System, but missed the Reflection. Anyway, I found the following: System.Reflection.Assembly.GetExecutingAssembly.GetName.Version [.Major, .Minor, .Revision, .Build] In case anyone else needed to know.
  8. xcalibre

    Displaying Application Version (AssemblyVersion)

    Hi there, I know that in VB I could get and display the application version with App.Version.Major Minor and so on. I did notice in ASP.Net that I have the AssemblyVersion section in my AssemblyInfo.vb file. My question is, how can I retrieve that info so that I can display it in a label...
  9. xcalibre

    PHP Install

    As recommended, I suggest you get the manuals from php.net. I have both running well on my windows machine. Simply install the PHP package (5 or 4.x). Then install the MySQL package on top. You will need to change the php.ini file and remove the ';' from the mysql dll/library extention...
  10. xcalibre

    cURL & postbacks

    Thanks ingernet, I suppose I could replace all the doPostback() calls with something more suitable like a call back of the php page with some arguments. I had thought of this before but was afraid it was going to get too complicated. To further explain the problem: Say I have Calendar.aspx on...
  11. xcalibre

    passing variables

    You could put your "if" requirements into a function and call it again for a different result. What is it you're trying to accomplish? Perhaps there's a better way to structure what you're trying to do. Andrew
  12. xcalibre

    cURL & postbacks

    I have an ASP.NET page with a Calendar Control on it that I am pulling and displaying on a PHP page using cURL. The problem is that anytime I click on any of the links on the Calendar control, I get a 404 Error. The problem seems to be that each link has a javascript doPostBack command. It...

Part and Inventory Search

Back
Top