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 Chris Miller 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. fly231

    Find IE full Browser Window Height And Width (JavaScript)

    Thanks for the reply Dan. I thought of the same thing but my problem is the user shouldn't see the window moving. What I'm trying to achieve here is when I click a button in the web page it will open up a popup (FAQ section) Then resize the Opener and dock the popup just next to the Opener...
  2. fly231

    Find IE full Browser Window Height And Width (JavaScript)

    Hi, I would greatly appreciate if someone could help me with this. Is there any way of getting the full width and height of an EI browser window using JavaScript. IE doesn't return the full Browser width, it only returns the inner display area width and height. What I need it the Full height...
  3. fly231

    Update Query problem

    jadams0173 Thanks so much You were right, I didn't see it before. but i manage do it by first putting the data in to a temp Table, and then using temp Table to update the actual Table. Here's the code I used, so that this may help someone. First query to put the data to the Temp table...
  4. fly231

    Update Query problem

    Hi jadams0173, Thanks for the quick response, But I don’t understand you need to create another table. Plus if I create another table I will have to do the same select statement from that table as well. I would greatly appreciate Any help on this matter
  5. fly231

    Update Query problem

    Hi, I ran into a problem while trying to write an sql update query in MS Access 2000. As you can see in the code I'm trying to update a field in the SummaryResults table using another query. But I'm getting this error saying "Operation must us an updatable query" I would appreciate it...
  6. fly231

    How to read contents of aspx files

    I used string filePath = "c:\\inetpub\\wwwroot\\temp\\tempFile.aspx"; FileStream file = File.OpenRead(filePath); StreamReader sr = new StreamReader(file); string strTemp = sr.ReadToEnd(); pattern = @"<(.|\n)*?>"; string StripdText = Regex.Replace (strTemp,pattern,string.Empty); This...
  7. fly231

    How to read contents of aspx files

    By the way, forgot to mention, this is for a simple website search. Thanks.
  8. fly231

    How to read contents of aspx files

    Hi , Can anyone tell me how to read contents of an aspx file. Like avoiding the tags and reading just the content ? Any help would be greatly appreciated. Thanks.
  9. fly231

    Remember Form Values on page reload

    Thanks Tgreer and Stsuing, I have already done it using the iframes, as i'm using a datagrid to display the select numbers on the parent form. I'll try it using the way you suggested as well. Thanks again
  10. fly231

    Remember Form Values on page reload

    Thanks Veep and jbenson001 for the suggestions. I think I found a different way for doing it. I thought of having an iframe in the parent form and having the link in there. So when the popup window calls the reload it just reloads the page in the Iframe and the form values on the page remains...
  11. fly231

    Remember Form Values on page reload

    But how can you pass a value to a page on the client machien without reloading it ? I can let the user select and add the numbers they want on the new window but I think it's impossible to add it to the parent form without reloading it . Thanks
  12. fly231

    Remember Form Values on page reload

    Hi, Thanks for the response. I understand what you are saying. But I was wondering if there's an easier way of doing it rather than manually remembering each form value and restoring them. I think it could also be done using remembering the values of the form fields in sessions. The purpose...
  13. fly231

    Remember Form Values on page reload

    Hi, I got a asp.net page (SignupForm.aspx) with some text fiels and a link on it. When the link is clicked it opens up a new page(SelectNumber.aspx) on a new window. I have a button on the new page(SelectNumber.aspx), when clicked reloads the parent page(SignupForm.aspx). My problem is when...
  14. fly231

    Can't access the tag properties in the user control

    True, Thanks for that. When you first said it, I tried it but it didn't work because I was loading the user control inside "if (!IsPostBack)" like below. if (!IsPostBack) { UserControl1 = LoadControl("includes/signupForm1.ascx")...
  15. fly231

    Can't access the tag properties in the user control

    Hi RTomes, thanks for the info I don't know why but, way you said doesn't work. Get an error 'System.Web.UI.Control' does not contain a definition for 'MyTextBox' Plus what if you have about 50 text boxes and checkBoxes. Wouldn't it be easier just to use the find FindControl in a loop...
  16. fly231

    Can't access the tag properties in the user control

    Thank for all the help. I tried the FindControl method and it worked this time. Here's the code I used, if this will help anyone. <%@ Page Language="C#" debug="true" %> <%@ Import namespace="System.Data" %> <%@ Import namespace="System.Web.UI.HtmlControls" %> <%@ Import...
  17. fly231

    Can't access the tag properties in the user control

    Sorry , I do not understand what you are refering to. The code above is all there is. "sinupForm1" is the ASCX file I have shown above. It's not a class. sinupForm2 is a similar ASCX file with different textBoxes. it dispalys everying fine , the problem comes when I want to access the...
  18. fly231

    Can't access the tag properties in the user control

    Sorry there's a small mistake on the code forgot to change it . PlaceHolderSignupADSL should be PlaceHolderSignup1 and PlaceHolderSignupPhone should be PlaceHolderSignup2 Thanks.
  19. fly231

    Can't access the tag properties in the user control

    Hi, I tried that as well, I can't get it to work. May be it's just my lack of knowlege about ASP.Net. I'll give past both the file here so, may be you can tell me what I should do. Here's the Main ASPX file <%@ Page Language="C#" debug="true" %> <%@ Import namespace="System.Data" %> <%@...
  20. fly231

    Can't access the tag properties in the user control

    Thanks for the response RTomes, I tried what you said and I get this error "The type or namespace name 'Webcontrols' does not exist in the class or namespace 'System.Web.UI' " Not really sure why ..

Part and Inventory Search

Back
Top