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 TouchToneTommy 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. bobmmp

    SSL certificates

    I like GeoTrust Certificates, but botton line... GeoTrust, Thawte, RapidSSL, all owned by Verisign. Bob B. http://www.adigitalhost.com
  2. bobmmp

    accessing encryption via classname.vb

    Thanks jbenson. Actually I was calling it by class name and function name. It did not work until I added the following Dim rajObject as New raj... why, you got me. I was under the impression if it was in your app_code, your object would aready be exposed? Thanks! Bob B...
  3. bobmmp

    accessing encryption via classname.vb

    I adapted and modified an encryption / decryption tutorial that was written for consult mode. I took the base part of the code and created a dll that I will call just classLibrary1. it is an adaptation of Rijndael using a salt, and a md5 hashed key. The dll is in the bin folder where it needs...
  4. bobmmp

    escaping pager in gridview

    Thanks both Jason and ca8msn [medal]. Works perfectly for what I need to do! Bob B. http://www.adigitalhost.com
  5. bobmmp

    escaping pager in gridview

    Jason, Thanks again. I think one of the issues I haven't grasped yet is that the quiz question all come from a sqldb and the reason I use the gridview is that I am presenting 7 to 8 questions at a time. Please look at my screen grab and see if you still think this is the best solutions...
  6. bobmmp

    escaping pager in gridview

    Thanks both of you. The grid option gets me going then I can go back and revisit the wizard. Since I am not sure how many steps there will be, I had ruled the wizard option out. But now I am boing to revisit it. Bob B. http://www.adigitalhost.com
  7. bobmmp

    escaping pager in gridview

    The reason I am not using the wizzard control is the number of steps is based on the quiz. Quizes are built dynamicly so the number of steps would change between each quiz. The page size never displays more than 8 questions at a time, but some quizes could have 5 steps and another 10? Bob B...
  8. bobmmp

    escaping pager in gridview

    I have a gridview that I am using in a quiz engine (VB). A have a item templete field that has 5 radio buttons. For the purpose of paging from one set of questions to the other, I have a PagerTemplete (method is previous/next). Inside the template, I have a button called submit with a command...
  9. bobmmp

    Customizing a Catalog Zone

    Did you find an answer to this? I would like to know myself. Bob B. http://www.adigitalhost.com
  10. bobmmp

    View PDF using asp:ImageButton

    Super, I am glad that it worked for you. Thanks for the star. Bob B. http://www.adigitalhost.com
  11. bobmmp

    Site goes down, after a few db calls

    Great, super that you found your answer. That would also effect the gateway. Your Browser is trying to connect to the server, after a period of time and no connection, the cannot find dns or gateway timeout error is going to get thrown. Bob B. http://www.adigitalhost.com
  12. bobmmp

    collection from gridview to SQL

    jbenson001 - Jim, Thanks for your help. Your suggestions were very valuable. This got me past a very big hurdle! [medal] Bob B. http://www.adigitalhost.com
  13. bobmmp

    collection from gridview to SQL

    Thanks Jim, I will give that a try. The value of the dropdownlist adds just fine. It is the other two values where the problem is at. One thing I did try and it failed to work was build an array up top where I was doing my output to screan to make sure I caught all my selected/checked values...
  14. bobmmp

    Site goes down, after a few db calls

    Does the server have to be rebooted or the services restarted prior to working again or does it resolve itself after closing and reloading the browser? Bob B. http://www.adigitalhost.com
  15. bobmmp

    collection from gridview to SQL

    Thanks for the reply. Here is the error thrown. Below is where it is thrown at. System.ArgumentException: No mapping exists from object type System.Web.UI.WebControls.Label to a known managed provider native type. The line with the error is marked *** for easy id. Dim cn As...
  16. bobmmp

    View PDF using asp:ImageButton

    Is there a specific reason why you want to do it with an image button instead of the hyperlink using an image? <asp:HyperLink ID="HyperLink1" runat="server" ImageUrl="images/image.jpg" NavigateUrl="~/addtest.aspx" Target="_blank">HyperLink</asp:HyperLink> Bob B...
  17. bobmmp

    collection from gridview to SQL

    thanks for the reply jbenson001. Yes, I get all kinds of errors. Here is my insert that I am trying to get from that part1 code. I know my parameters are incorrect, I keep get scalar error messages and My when I do the For Each, vs tells me the varialbes used above are not declared. I have...
  18. bobmmp

    FormsAuthentication.RedirectFromLoginPage question

    Are you using visual studio or visual web developer express. Also, Are you using your own login or the asp.net login control part of the membership provider? Bob B. http://www.adigitalhost.com
  19. bobmmp

    collection from gridview to SQL

    This a copy of an unanwered post on asp.net forum I have been hung up on this now for a while. I have a gv that has multiple select checkboxes and a dropdownlist. In my codebehind, I captured the results and verified that they are collected.... see Part 1 in below code. I finally have this...
  20. bobmmp

    GridView showing record count from another table

    This was my end solution that worked.. will see what happens when there are thousands of projects and not hundreds. SELECT COUNT(Project.Status) AS Stats, StatusList.StatusName, StatusList.StatusID FROM Projects INNER JOIN StatusList ON Project.Status = StatusList.StatusID AND Project.Status...

Part and Inventory Search

Back
Top