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 strongm 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. behindthepipe

    Trap ajax errors?

    Hi, for asp.net ajax, how do I trap errors with exception handling? can someonw provide an example? thanks.
  2. behindthepipe

    get window.status

    hi, in a web browser, theres the window.status bar that inform us of the file location/status while loading. How do I get ajax to grab those load status and output to a textbox or something?
  3. behindthepipe

    Microsoft SQL 2005 Server Asp.net

    Hi, I installed the MS SQL server 2005 on my computer. now I want to create a sample database that I will later use with Asp.net. The problem Im having is how to create a simple test database in MS sql. I dont see any gui interface to create the databse. Im sorry but Id never worked with MS sql...
  4. behindthepipe

    data reader

    hi, thanks for the reply. Im quite new with sql statements. How do I order the statement? thanks.
  5. behindthepipe

    data reader

    hi, i am using ExecuteReader()to read data from ms access database. it will read from row 1 down until the end. my question is, how do i get it to read starting from the last row to the first row? thanks in advance.
  6. behindthepipe

    hi, I have a linkbutton that when

    hi, I have a linkbutton that when clicked, the ajax modal pops up. however, I do not want to click on the link to launch the model popup.Instead, I would like javascript to execute the link button when my webpage loads up. like this, <body OnLoad="javascript:__doPostBack('LinkButton3','')">...
  7. behindthepipe

    asp.net ajax AnimationExtender fade in image

    this is the ms ajax 1.0 recently I was using the animationExtender control with the updatePanel with an image control inside of it. When the webpage loads up, it fades in an image. It did fade in the image ok, however before it fades the image, it displayed the image first then does the fade...
  8. behindthepipe

    Css questions.

    Im from a table background, and beginning to learn CSS. I have a container div and another div called divB. I then place divB inside the container. Now I keep adding text to divB, and theres a problem. the divB will stretch its width and go outside the container div boundary instead of going...
  9. behindthepipe

    Asp.net and Ajax Updatepanel bug brrrrr...

    I am using the Ajax UpdatePanel, and put an Ajax tab inside of it. I then put some buttons inside the tab. Then add the trigger to make one of the buttons <asp:PostBackTrigger ControlID="MyButton"/> Then when I compile and run the page, and I got this error. "A control with ID 'MyButton'...
  10. behindthepipe

    ASP.NET 2.0 - return a value from a popup window

    Wont the your popup only work on computers with .net framework installed?
  11. behindthepipe

    Clients local time

    I tried solving this problem but cant get it right through the server. I even wrote a time region convertor but it was too buggy. Thus I use javascript with a hidden textbox. Works great. The way it work is, java gets time/date from user computer. Puts it into the hidden textbox. Since the...
  12. behindthepipe

    Forms Authentication Redirect to default.aspx

    flyclassic22 , In asp.net 2.0, theres a new feature called Profiles/roles. Once a user is validated, it checks to see what type of roles or rights that a user have. E.g, if they are admin then they have they own customize pages with admin functions, ect. I dont have great knowledge on this new...
  13. behindthepipe

    Page.Control

    Alrighty. Frist of all Id like to thank you all for your efforts in helping me tackling this down. Like they say, two heads are better than one. Saved me an extra day of sleep:) Now back to the problem. I tried all of you guys suggestions, and from your hints, Ive manage to try something, and...
  14. behindthepipe

    Forms Authentication Redirect to default.aspx

    Oops, I forgot to ask my own questions. heres a scenerio, I type in the url to the protected page without logging in so it brings me to the login page. Once I login successfully, it brings me to the page I that I originally requested with this method,"RedirectFromLoginPage". My question is...
  15. behindthepipe

    Forms Authentication Redirect to default.aspx

    ok so we have 2 web.config forms. The first one is this, and we'll call it A. "<authentication mode="Forms"> <forms name="LoginAuth" loginUrl="~/login.aspx" timeout="20" cookieless="UseCookies" /> </authentication> " The other one is this,we'll call it B. "<location...
  16. behindthepipe

    Page.Control

    I have a code Page.Control.add(label); Now that works in default.aspx, but when I try to use it in my own class(MyClass.cs). It doesnt work. Whats the proper way to write that in a class?

Part and Inventory Search

Back
Top