Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. ZoneAlarm made a mess of things when they relseaed 5.0 (Or 5.5), this was the first time I jumped on a product without first waiting for reviews, This was back in May. It causes IIS and Apache servers to not work as expected, I have since re-installed ZA 4.0 . BTW, I only use Win2K, no XP for me :)
  2. Are you saying that when you create the controls in PreRender on OnLoad the events never fire? Have you tried using the Page Init event
  3. Robby

    Datasets

    You can concat the columns in your Select statement... Select (employeeid + name + mobilenumber) as Something From myTable
  4. I rarely create WinForms lately and if I did I wouldn't use MDI either. It would be like using Frames in web apps. :eek: (Ok maybe not as bad)
  5. Can't you place an ASP Button and call the previous page using Server.Transfer or Response.Redirect from the server?
  6. You need to use physycal paths .. C:\redstone.....
  7. Do all three tables have the same schema, are they coming from the same database store?
  8. Make sure that the first time you bind in your load event that you check for Not IsPostBack Also, Do your formatting and colorizing in the ItemDataBound Event
  9. Is that a Connection or a connection string? Either way I think that it would bettter being in a class instead of a control, unless I'm missing something here.
  10. The sequence of events is ... Init Load PreRender Init: Initialize your controls here, things like runtime JavaScript Load: Data loading etc. PreRender: This like setting the page title at runtime
  11. If it's VB then place the following at the top of each code page.. option explicit on option strict on
  12. Even if you disable the Prnt-Scn button, many people have third-party software that can do the same thing. I would take this requirement off my list.
  13. Windows Forms??? You posted this in the ASP.NET section, is this an ASP or WinForm question?
  14. In your page load event make sure that the Binding is done only on Not IsPostBack
  15. Do you mean a pop-window with a username and pw prompt?
  16. The best way to do this is to GET RID OF THE FRAMES. :) The only time I would use frames is for a tree-view control.
  17. When you use XX-smal or large etc, the size will depend on the user's settings, you can overcome this by setting the Point size to the text.
  18. Are you using ASP.NET or classic ASP? Why are you not using ASP Controls and doing this in your server code? Adding single quotes to the Write() should fix the problem.... response.write("'" & FinalArray(i) & "'")
  19. This may help..http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=73
  20. You can pass the name in a query string from page one to page two, I suggest getting the value of the textbox from page one whilst in page two, I have sample on how to use this method here..."Passing Data and Controls From Page To Page in ASP.NET " http://www.bassicsoftware.com/CodeLibrary.aspx?searchcategory=20
  21. Something like this would have to be done on the client using let's say JavaScript, I don't know for sure but I don't think it's possible.
  22. Since you have the MSPress set, pop in the CD and take the practice exams, they will give a good idea of what to expect on the real one.
  23. I agree 100% PD. I know a couple of guys that barely know how to open a .NET project nut they passed the first two exams. They only cheated themselves
  24. At least yours got to the point quicker then mine. :)
×
×
  • Create New...