Search results for query: *

  • Users: N_K
  • Content: Threads
  • Order by date
  1. N

    Master Page - making it dynamic?

    Hi, I have a master page for my site which controls the general layout of the site. On the .master part of the file I have a large area of javascript I use for tracking. I need the master page to be able to detect the url of the current page and change certain variable values in the...
  2. N

    doctype, treeview & CSS issue

    Hi, A colleague of mine is using a treeview to generate a site map for the .Net site we're developing. We've hit a problem. The treeview seems to show a break between a few elements . After raising a query about it it was suggested he change the doctype from this: <!DOCTYPE html PUBLIC...
  3. N

    event Handler on DDList being ignored...

    Hi, I'm creating a shopping basket where for each item a drop down list is created and an event handler is assigned. Suddenly my application has started ignoring my Handler. I have tried assigning to a different handler which just outputs a response.write message for debugging and this...
  4. N

    RadioButtonList - problem with selected value

    Hi, I have a RadioButtonList but am having issues obtaining the selectedvalue. I have the following: DataTable = FaqCatAdapter.GetFaqCat RBLFaqCat.DataSource = DataTable RBLFaqCat.DataTextField = "Description" RBLFaqCat.DataValueField = "WFaqCatId"...
  5. N

    Passing html into a database field

    Hi, Im writing a control to send answers to FAQs to the database. Some of these answers may have html a links in them. How should I treat these fields so that any characters harmful to the MSSQL database are converted but still parse as html when recalled later and sent to a page? At the...
  6. N

    searching contents of a string?

    Hi, Sorry if this seems simple but I don't seem to be able to find it anywhere. I want to find out if the word "LoginRegister" exists within the current page URL. Basically this is so that one of my controls can act differently if it is used on a particular page and "LoginRegister" is the name...
  7. N

    Best encryption algorithm for card info?

    Hi, I'm sort of new to implementing encryption and I need to encrypt credit card info which is to be stored on a database. Which algorithm given in dotNet is best for this? Any pointers on implementing it? I assume I will have a key in my select method and another key in my insert or update...
  8. N

    Buttons on a DataList

    Hi, On each row of a DataList I have a button which will allow the user to edit that row's details and bring up an extra bit of the page. I cant seem to refer to the button in my codebehind file, VS insists the button has not been declared. How can I sort this out? cheers, NK
  9. N

    DataList Paging - updating num of pages / jump to page

    Hi, I've made a control which uses a DataList to display some related contacts. Im using paging to control how many records are displayed. All works well with just one small niggle. Two dropdowns exist at the top of my control how many results to show (DDNumResults) and which page to jump to...
  10. N

    accessing template control properties in code behind.

    Hi, I'm making a web control which is a table of a few contacts, each contact row having a button to view or edit the contact depending on permissions allowed. The whole roles and permissions bit is sorted. what my problem is is accessing the visible property of the buttons on the control...
  11. N

    Object Design query

    Hi, I'm designing a system in ASP.Net using VB.Net. I have an object called Uer which will house a user's email address and password. I want each user to have its own Address object also which holds name, address, country etc. What i need to know is to I make one of the properties in the...
Back
Top