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 wOOdy-Soft 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. ASPnetNovice

    How to split a string that has double quotes on it

    Hello I have the following problem I have a string that looks like this: myString = "bla bla bla" some other text "bla bla bla" I need to split the string in such a way that the delimiter is the double quotes I have try something like the following : myString.Split("/"") but it doesn't...
  2. ASPnetNovice

    How to call code from another page

    Hello, I was wondering if someone knows how to call code from a sibilling page. I have 6 asp.net pages for an online questionaires and from page 3 I need to call code that was written in page 1. The approach I am using is as follows. the code behind from page 1 comes from a class call page 1...
  3. ASPnetNovice

    Hide URL details in my site

    How can I hide the pathname and filename in the URL as people navigate through my website? I want to just always show the base domain name without all the extra garbage. I don't need it because once in the site the user is to navigate using the buttons and links within the site. Thanks.
  4. ASPnetNovice

    How to maintain view state across differents pages

    Hello, I was wondering how can I maintain state after I leave a page. In other words I have a 6 page questionaire that I am creating online, and If a user fills page 1 and then goes to page 2 but for some reason decides to go back to page 1; I need to be able to have my application remember...
  5. ASPnetNovice

    how to move a web application to another machine

    Hello, I have the following problem I create an ASP.NET web application in a machine and know I want to copy the application into another machine how can I do that ? My application name is "interface" and it is saved on the root of my local IIS server as usual. C:\Inetpub\wwwroot\interface...
  6. ASPnetNovice

    advice on web page layout

    Hello, I am making an ASP.NET site. I have created several .aspx pages and some have web user controls(.ascx) that I made on them. I now wish to use the content on these pages on a 'master page'. I originally wanted to use frame sets but when investigating inter-operability with ASP.NET I found...
  7. ASPnetNovice

    how to combine two project into a single one

    Hello, I have the following problem I create my application in two parts. part one handles a given functionality and was created a separate asp.net web application part two handles a different functionality and was also created a separate asp.net web application. Know that I one to combine...
  8. ASPnetNovice

    How to force a postback

    Hello, I have the following situation I create a button (and other controls) dynamically at runtime And I have a mechanism to persist the button(and other controls) via session so that everytime a postback occurs the button gets recreated. I am using an arraylist to store the button ( and...
  9. ASPnetNovice

    how to maintain scroll position across postback

    Hello, I need to know how to link to a given section of the page using asp .net I have a page with a button , every time the button is click a new block of controls is added to the page. As a result the lengh of the page increases and every time time a postback occur the page is display from...
  10. ASPnetNovice

    work on same application from different machines

    Hello, I have the following problem I am working on an ASP .net application and during the day I work in the office but at night I like to save my changes and zip the folder where my application is stored to be able to work from home I am testing this with another machine in the office but it...
  11. ASPnetNovice

    how to loop through a webform to change the text property from control

    Hello, I will like to ask if someone knows how to loop through all of the controls of a webform and populate the text boxes with a value like "hello world" . This is the code that I am trying but it doesn work Dim child As Control For Each child In Me.Controls...
  12. ASPnetNovice

    background color of a textbox

    I created a few textboxes and when I run my application some of them show up with a pale yellow background and some don't . I try to adjust the BackColor property of the textboxes and I still can't eliminate that pale yellow background Anyone knows why
  13. ASPnetNovice

    How to maintain the value

    I have the following question: I created some kind of wizard that consist of 4 differents pages to gather information from a user. I will like to maintain all the data entered by the user temporarily saved in some kind of hash table until the user reach the last page. Only when the user reach...

Part and Inventory Search

Back
Top