Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. At least you got it to work. :)
  2. If the project has more than a single web page than that's scale enough for me. I cannot see any valid reason for using Response.Write aside from doing some lazy debugging (as I sometimes do).
  3. The Dataview has Find, FindRows and RowFilter you can use.
  4. Thanks to VolteFace, it's his work.
  5. Our own VolteFace has the following sample to offer....vfcodestatssrc.zip
  6. Textbox, DataGrid, Button,Label, Image even RadioButtons have Tooltips, Dropdowns do not.
  7. Sam, have a look at my Calender sample, I have some client/server data going back and forth.
  8. I would put most of the ADO2.7 logic/philosophy on a shelf when moving to ADO.NET. Although I don't believe too much in Databinding controls, your scenario warrants its' use.
  9. Yup, Stored Proc would be the way to go here.
  10. PlaceHolders and Panels are a good idea, however Response.Write is Not. You may want to consider Kris's idea on a Repeater or even a DataList.
  11. Before your insert use the ExecuteScalar of the command object with something like this. Select Count(*) from Clientes Where email = '" & frmemail.Text & "'" If the return is 0 then go ahead and insert otherwise do not continue with the insert.
  12. I find the best way to place controls on the fly is to use Table/TR/TD tags combined with Styles, whether the styles are in-line or in a CSS file that's up to you.
  13. Have you modified the web.config file to implement forms authentication
  14. Yes you can, I believe that you need frontpage extensions installed.
  15. You can achieve this with user controls or templating. Download this file http://www.bassicsoftware.com/popup.aspx?b_id=157 To view the results: the pages on my site are derived from a base class (template) http://www.bassicsoftware.com, you will notice that the entire page reloads as I'm not using frames.
  16. I never use frames I use templating .... http://www.xtremedotnettalk.com/showthread.php?threadid=78721
  17. Like my Customize section, you can select the color scheme of the site. http://www.bassicsoftware.com/Customize.aspx
  18. I hear that frames on a page keep the "content" page's keywords from being found by search engines. That's correct. Also, there are no ASP.NET frames, these frames are html frames, it's just a template that VS uses.
  19. As bungpeng mentioned use a Delete statement and an ExecuteNonQuery. "Delete Account Where SomeColumnID = " & nIDVar
  20. When you select adding a new page/form to an asp.net project you can choose Framed HML page from the template. You can use no postback on pages, lookup @page directive attributes.
  21. Robby

    datagrid

    Hard to say without seeing your code. Did you follow their code exactly?
  22. You may want to download this sample http://www.xtremedotnettalk.com/showthread.php?threadid=78434
  23. try this... strSQL = "SELECT ref FROM products WHERE ref LIKE '%" & Search & "%'"
  24. Post what you have thus far so we can see what methods you are currently using.
  25. Why are you posting back with Response.Redirect("") or Server.Transfer(""), that's why the page loads twice.
×
×
  • Create New...