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 SkipVought 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: *

  • Users: mrathi
  • Order by date
  1. mrathi

    Apllication and QueryString Question

    Never mind, it seems the following was the error I was trying Dim abc = "X" & Session("user") It does not accept that. The following solved the problem.. Dim abc abc = "X" & Session("user") Thanks
  2. mrathi

    Apllication and QueryString Question

    Hi, I am having some trouble with session state. I have three folder in my application. I have my login pages in one folder, and other pages in another folder. After successful login, I response.redirect to another page and also save the login information in session. So far it works great. Now...
  3. mrathi

    Apllication and QueryString Question

    Thanks again. Does that mean that I do not need a virtual directory for the folder containg login.aspx and related pages? Also, if I have separate applications, and after successful login I save the username in session, can I access the session(username) in both the applications? Thanks
  4. mrathi

    Apllication and QueryString Question

    Thank you for the reply. 1. I am not worried about security. So maybe, I will just go ahead and pass it as a querystring. 2. The applications don't interact with each other. Can you please throw some light on "web service for login verification". Do I need to create a web service? Currently...
  5. mrathi

    Apllication and QueryString Question

    Hi, Thanks for all the responses. 1. When I transfer some variables using a querystring to another page, is there a way that my querystring cannot be seen in the address bar of the browser. I just want the user to see www.xyz.com/page.aspx and not the querystring. 2. The concept of asp.net...
  6. mrathi

    Adding a treeview node index to a querystring

    I am sorry, I did not get any solution so far. I got busy with some other stuff. It looks like it will be a tough task to figure that out. Good Luck. By the way, if you get a solution, will you please let me know. Thanks
  7. mrathi

    Combo Box List

    Hi, I want to know if it is possible to do the following with the combo box list and if it is, I would appreciate if someone tells me how to. Thanks I have a combobox list with 5 items in it. If the first item in the list is selected, I do not want the user to select additional items until he...
  8. mrathi

    Multiple Panels

    Hi, I am still struggling with this. This is what I understand. Please tell me if I am wrong. Instead of using the required field validators, I should use custom validators on each of my textbox. Then in the custom validator function, I should code to check if the length of the textbox is...
  9. mrathi

    How do I use a crystalreportviewer?

    I myself am getting that error now, I think I will have to get help from crystal report support. Thanks
  10. mrathi

    crystal report "logon failed"

    i too believe that it is a problem with the database connection. However, how do I do the database connection in crystal report apart from the one I have already mentioned. I used the samples provided vy crystal decisions, but somehow they say you have to provide the table information and my...
  11. mrathi

    crystal report "logon failed"

    Hi, I have created a asp.net webpage with a crystal report viewer on it. When I am working with the development machine, it just works fine. I have oracle client installed on my development machine and i am using VS .Net 2003. Here is the string that sets the database login ...
  12. mrathi

    How do I use a crystalreportviewer?

    Hi, In the code behind file of your web page, put the following code in the page load event: dim rpt as yourreport rpt = new yourreport crystalreportviewer1.reportsource = rpt 'if you have database login then put this line rpt.setdatabaselogon("user", "password")...
  13. mrathi

    Adding a treeview node index to a querystring

    I am sorry, I still haven't figured out the follwoing: What i want to know is how do i add a section onto the navigateurl so that when i go to a different page the expanded nodes will still be expanded. ex page2.aspx?s=1.0.3 Thanks
  14. mrathi

    Session Objects

    Thank you very much. I really do appreciate it.
  15. mrathi

    Session Objects

    Hi Veep, Can you please put the code for insertion into db and sending email as well. I would appreciate it. By the way, nice piece of work. Thanks
  16. mrathi

    Adding a treeview node index to a querystring

    Yes, that is how I am doing. However on another page I need the rowTitle("Title") and that is what I am passing. If a user clicks on the fourth level on the treeview, in the querystring, I pass all the four values(in text, not node). Thanks
  17. mrathi

    Adding a treeview node index to a querystring

    Oops, I figured out how to make the nodes hyperlink and how to transfer values of the nodes in querystring, however, I am still stuck at my initai question. How to keep the status of the treeview on the new page. Also, I want to know if I should make the database connection to populate the tree...
  18. mrathi

    Adding a treeview node index to a querystring

    Thanks for all the responses. I figured it out. It was not that bad. Thanks
  19. mrathi

    Adding a treeview node index to a querystring

    I populate my dataset and then using the dataset I populate my treeview. For Each rowAuthor In ds.Tables("Authors").Rows nodeAuthor = New TreeNode nodeAuthor.Text = rowAuthor("au_lname") & ", " _ & rowAuthor("au_fname")...
  20. mrathi

    Adding a treeview node index to a querystring

    There is a selectedIndexChange event for the treeview control, but I still don't know how to accomplish what I am trying to.. Thanks

Part and Inventory Search

Back
Top