Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. If you're commiting on each page/section then you won't be able to rollback, and as you stated... if the client loses the connection then they need to re-start the entire app. I think that your asumptions with the 'cancel' is fine.
  2. Which if the following do you want... --- All rows the same color --- Alternate rows change color --- conditional: If x then rowColor = Red
  3. Is this a WinForm or ASP?
  4. A Web Setup project will deploy to a web server, this means the installation takes place on the server. If this is a Windows application then a regular Setup project is what you need. Uploading the msi to a server is not considered deployment.
  5. Just bring a lot of cash, If you get robbed they'll probably kill you anyway, so it won't matter how much. Just kidding, I guess if you calc for $50 to $100 per day you'd be ok.
  6. For functionality and features the DataGrid is a better choice, but when it comes to displaying a datatable in a multi-row appearance then a DataList is a better choice. Don't get me wrong you can certainly accomplish this with a grid, but not as easily. The DataList is ideal for displaying something like this.... http://www.bassicsoftware.com/UsefulLinks.aspx
  7. I suggest using a Datalist instead.
  8. You didn't mention that you were using uathentication, are you? If so you need to modify your web.config file in the sub-web.
  9. Also, have you created a virtual directory for 'Security" ? If not then do so using IIS manager
  10. yes you can. Have you modified the original in your root? If not then just copy it as is.
  11. Do you have a Web.Config file in the Security directory, if so what does it contain?
  12. Are you sure, my understanding is that any time you reference an Office object you need the app itself. (or it may depend on the type of call you make to the object)
  13. That could be done using JavaScript except that a textbox cannot display formatted text, you would need to display the end result in a Label or Div
  14. Sam, that method would require the end-user to install Access on their PC
  15. There isn't in ado.net
  16. Also, is it still in scope?
  17. Yes "each client session its own "application" on the server"
  18. This would place you in a catch-22 position, You'll always remain poor spending your time developing a new IDE. :)
  19. Do you want to just filter the dv ? If so, use the RowFilter method. btw, any relation to http://www.DataGridGirl.com ? :)
  20. The same way that you assign the value to a textbox you can asign to a class member. customer.name = x
  21. This should help....http://aspalliance.com/141 He's displaying in a datagrid but it's pretty much the same thing.
  22. The first thing you need to do is place the following two lines at the top of every code page you have. Option Explicit On Option Strict On Next the parameters for the Constructor of the class Car does not match with what you have in your module. The same goes for the method 'price', you are not sending the required argument of 'amountCar As Decimal'.
  23. shahab, if this form/page is in a private secured part of your web site then following PlausiblyDamp's suggestion of setting validateRequest to false would be viable.
  24. Can you provide some details.
  25. Use Text data type in SQL Server
×
×
  • Create New...