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

    HP DesignJet 815

    Hello, I got a used HP DesignJet 815 scanner/printer. When the technician came to install it he said that i require a calibration sheet in order to calibrate the scanner. It is a physical sheet with some patterns on it that calibrates the machine. I couldn't find anything on the internet like...
  2. thehms

    Automatically asp script

    Thank you guys.... jmeckly that article is really useful... i will implement it and let you know the results... thanks again.. Haytham
  3. thehms

    Automatically asp script

    Hello all... i am creating an application that checks the persons birth date against todays date, this is run every 24 hours automatically. If it is the same day and month, then a "Happy Birthday" email is automatically sent to that person. My problem is that how can i make the asp script run...
  4. thehms

    Domain Name Search

    Hello all... i am making a web hosting website, and i want to add a part where a person can search whether the domain is available or not. The registrations are handled by HSphere but it doesnt have the option of showing other free domains as well as the required one (like if i search for...
  5. thehms

    Buttons don't work with Enter button

    thanx... this one worked....
  6. thehms

    Buttons don't work with Enter button

    hello... yes, this is the line of code i found...it worked when i hvae the buttons on a page... but my problme lies in that my form is in a user control.. i added the code in the ascx.cs file and it didnt work, and i added it also in the code behind of the file i call it on and it also didnt...
  7. thehms

    Buttons don't work with Enter button

    hello all... i have a form (say a login form), after the user enters his login information he presses enter to login. the form doesnt take this enter as a click on the button, instead, it just posts back the page. for a person to successfully login he has to press on ENTER button with the...
  8. thehms

    dynamicaly change ADs in ADRotator

    thank you ca8msm :) it worked the way i want it exactly :D :D The HMS
  9. thehms

    dynamicaly change ADs in ADRotator

    hi all... i am using an ADRotator control, what i want to do is to load the ads from an SQL 2000 DB. i have a table called 'ADs' and fields with all the attributes in the Ads XML file (ie. ImageUrl, NavigateUrl, AlternateText, Keyword, impressions). i thought of 2 things that i could do: 1-...
  10. thehms

    get month in the Calendar1_SelectionChanged Event handler

    nope... it didnt work, it gets the month also if i selected a date..
  11. thehms

    obteined an aspx url

    hi there.... there are formats for the url... here are all of them with examples....:) Response.Path --> /session_test/url.aspx Response.PhysicalPath --> C:\egytex\session_test\url.aspx Response.PhysicalApplicationPath --> C:\egytex\ Response.RawURL --> /session_test/url.aspx?Id=4&Name=Me...
  12. thehms

    get month in the Calendar1_SelectionChanged Event handler

    hi BoulderBum! this will get me the month if i select a date in a diffferent month... i want to get the month without selecting any date, just by moving to the next or previous month it should automatically get me the month number... The HMS
  13. thehms

    get month in the Calendar1_SelectionChanged Event handler

    hi all... here is the scenario i am facing: I have a page with a calendar control that shows all the events of the current month (i.e. it if you open he page now it will show anuary Events). my problem lied in that when i move to either the previous or next months it didnt load the events of...
  14. thehms

    Get current month from calendar control

    i got it... :) i added this eventHandler: public void Calendar1_VisibleMonthChanged(object sender, MonthChangedEventArgs e) { Response.Write("You moved from month " + e.PreviousDate.Month + " to month " + e.NewDate.Month + "."); } and i added this in the page initialization...
  15. thehms

    Get current month from calendar control

    hi all... i have a website that shows scheduled events. i am using the calendar control to view the days that have events in them by shading them. i get the dates from SQL server, by having a stored rocedure tha selects the events according to this months month.. my problem is that when i...
  16. thehms

    Putting 2 forms on one page

    hi all... i got it to work at last :) i discovered that another user control i have on the page has a <form> tag and that was preventing it from running the button for some reason..!
  17. thehms

    VS.NET keeps reformatting my html! This is driving me nutts!

    hi... why dont u try putting the background image with the CSS ?
  18. thehms

    Putting 2 forms on one page

    what do u mean "inherit the webform"? i have this line at the beginning of the html code where it declares the user control: <%@ Register TagPrefix="uc1" TagName="PortalSignin" Src="controls/PortalSignin.ascx" %> i compared both my original page with the form that doesnt work and the new...
  19. thehms

    Putting 2 forms on one page

    yes, it is there: this.Button1.Click += new System.EventHandler(this.Button1_Click); this is the line that i have for th ebutton initialization.... the button does work when i put the control on a new blank webform...
  20. thehms

    selecting values in drop down lists

    thanks... it worked.. :)

Part and Inventory Search

Back
Top