Search results

  1. Kodo

    Forms Authentication

    take a look here http://www.devhood.com/tutorials/tutorial_details.aspx?tutorial_id=85 take note of the web.config that the author has displayed. A section like this <location path="public/"> <system.web> <authorization> <allow users="*" /> </authorization>...
  2. Kodo

    Web.Sitemap...

    ready to learn about classes and objects? What I would do is pull the data from the database, populate a class that deserializes to an xml document (all in memory) and then save that xml document to the file system. You would do this everytime you added a section so it would be more or less a...
  3. Kodo

    Web.Sitemap...

    are the sections stored in the db?
  4. Kodo

    adding things to images?

    I've never used it, but you may want to look into it. http://www.google.com/apis/maps/
  5. Kodo

    Deleting a Asterisk from a string

    yikes! that's overkill. Just do this var=replace(strVal,"*","")
  6. Kodo

    Desktop Remote Connection With XP Home

    oops, sorry bout that, I missed that in your post; that's what I get for skimming :p RealVNC is a decent option but the free version doesn't encrypt the session. ( http://www.realvnc.com/faq.html#security ) just an FYI. :)
  7. Kodo

    Desktop Remote Connection With XP Home

    www.logmein.com
  8. Kodo

    Best practice for adding new record?

    that's cool, but you should know about it anyway :) I tell you I had a hard time moving from ASP to .NET as well because I had direct interaction with everything displayed. I miss that in a sense but the interaction level has been moved into a control object and once you get a hang of the...
  9. Kodo

    Best practice for adding new record?

    when you changed it to a template, it should have put <%#Bind("NewsDt")%> for the text value. If you go to the insert item template edit view in the designer, and you click on the text box for the NewsDt field you should see a little black arrow on the top right corner of the textbox control...
  10. Kodo

    Best practice for adding new record?

    that means it can't find the control in the FindControl method because you're using a bound field. Make that field into a template column and and set the ID to NewsDt and then try the code again.
  11. Kodo

    Best practice for adding new record?

    for classes, take a look at my examples in the VB.NET forum. As for default values for the FormDetail you'll need to go into code to do this. Protected Sub FormView1_DataBinding(ByVal sender As Object, ByVal e As System.EventArgs) Handles FormView1.PreRender Dim ThisControl As...
  12. Kodo

    Best practice for adding new record?

    ok, lets say you have a registration page (there is a control for this but lets pretend otherwise). You can make a class that has all the properties of the registration and when you submit, it creates an object and populates these properties and then sends this object to a data layer which...
  13. Kodo

    limits on number of variables

    a lot of what you're questioning has to do with server configuration, software requirements and software archtecture. If you have lots of RAM , then you have more leeway, However, if you have say 1Gig of RAM and you have 1000 users on your site with 15 session objects, each with 100kb of data...
  14. Kodo

    How To: Use binding source object to bind to a custom object

    (VB.NET 2.0) This demonstration builds off the last demonsration (xml serialization) and uses the same People class. In this demonstration you will see how to use the binding source object to bind to an instantiated People object and bind the data to a GridView as well as binding text boxes to...
  15. Kodo

    Best practice for adding new record?

    Bingo.. and It would be difficult to explain without writing a short essay on it. Better to watch than to have me re-write it :)
  16. Kodo

    Best practice for adding new record?

    grab some coffee and a bagel http://www.microsoft.com/events/series/essentialaspnet.mspx These videos are much better than me typing it all out.
  17. Kodo

    Asking for help in developing project

    .NET isn't something you just start doing. There's a lot to learn about it and the curve is steep if you have no experience in programming OOP. You will need the VS.NET IDE. You can download an express (free) version (legal!!!) from MS here...
  18. Kodo

    Put back VB.NET Forum

    WOOOOT!!! *gets out bucket and shovel*.. Time to go play in the sandbox! :)
  19. Kodo

    How To: Serialize an object into XML

    VB.NET 2.0 This example written in VB.NET will show you how to take data from a form, instantiate and populate an object and then serialize the data into an well formed XML Document. It will display the raw xml in a text box and then load the xml data into a dataset which will be bound to a grid...
  20. Kodo

    Forms Authentication

    that's what I'm saying. Your logout "section" is within the layer that is being protected with FormsAuth. You need to remove it from being protected by FormsAuth for it to do what you're asking. So, have the link go to a Logout.aspx page that does the logging out for you. so. click LOGOUT...
Back
Top Bottom