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!

Recent content by ASPnetNovice

  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

    Yes in the long run I will need to move that code to a class (that will implie a redesign of some functions and passing more parameters) but for know I need a quick fix. I am sure it must be a way to call code from another page it seems like something people will do frequently ?
  3. 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...
  4. 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.
  5. 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...
  6. 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...
  7. 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...
  8. ASPnetNovice

    how to combine two project into a single one

    int is the actual name of my application so that is not the problem.
  9. 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...
  10. 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...
  11. 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...
  12. ASPnetNovice

    work on same application from different machines

    Thanks for your reply, I do have IIS in both of the machines. I have heard of source safe before but wasn't sure in what context it could be used. Will look into that. Thanks
  13. 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...
  14. ASPnetNovice

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

    I place all of my controls in the same webform1 so how come they don't belong to the same form ?
  15. ASPnetNovice

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

    All of my control are directly in the form and I am not using panels. I don't think the loop works as it is because I have 17 controls in my form and when I run the following code I get a count of 3. =============================== Dim child As Control dim counter as integer For Each...

Part and Inventory Search

Back
Top