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 TouchToneTommy 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. RTomes

    Hide label based on checkbox

    try <input type="checkbox" runat="server" id="mycheck" /> instead of <asp:CheckBox and see if you get the same problem. It does sound more like your javascript function showHide is broken though.
  2. RTomes

    sending email to subscribers in a listserv

    You don't have a local smtp mail relay setup. I use gmail where I can't set up a mail relay because of corporate policy. If you don't have one you can set one up in 5 minutes for free. MailMessage message = new MailMessage(); message.Body = "Hello"; message.Subject =...
  3. RTomes

    External Images - Dynamic Chart Images

    I am trying to use a dynamic external image. The source=External and value="http://ReportsServer/images/CustomChart.aspx" A red x appears rather than the image. When you right click on the image the url shows only "http://ReportsServer/". I tested it and the dynamic image by it self does render...
  4. RTomes

    IE not expanding with height 100%

    Nevermind that last post. Stay away from dynamic css properties. That last solution just locked up IE.
  5. RTomes

    IE not expanding with height 100%

    This seems to work. I would stay away from using many dynamic properties on one page, they can slow down IE. Would still like to know if this is some new issue. <table height="100%" style="height:expression(this.parentNode.offsetHeight)" id="tbl" width="100%" cellpadding="0" cellspacing="0"...
  6. RTomes

    IE not expanding with height 100%

    Noticed this with IE 6.0 the other day. The cells don't seem to grow and expand correctly anymore. Is this some thing new or something I never noticed. In sample below the red side of the table should be the same height as the blue side. It displays correctly in Firefox but in IE the red side...
  7. RTomes

    Cross page postback problem.

    Goto http://msdn.microsoft.com/asp.net/learning/learn/newtodevelopment/default.aspx and watch the "ASP.NET HOW DO I Video Series: Tips and Tricks" video. It explains how to cross page postback in 2.0
  8. RTomes

    What happend to Debug Symbols in 2.0

    Found the answer. You have to download an add on for VS Studio 2005 (if you are using VS Studio 2005 you can also do this by command line) to pre compile web application code with more options. http://www.123aspx.com/redir.aspx?res=33525
  9. RTomes

    Error Handling

    Turn custom errors to Off in the web config. Add a global.asax file to the project. Capture the error handler like this: Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs) ' Code that runs when an unhandled error occurs Server.Transfer("errors.aspx") End...
  10. RTomes

    What happend to Debug Symbols in 2.0

    When I deploy a web applicaion to a 2003 server my debug symbols are gone. The debug information excludes the line numbers (the most important part). I have <compilation debug="true" > in the web config. I even tested it using a special error page. Sub Application_Error(ByVal sender As...
  11. RTomes

    HTTPGetRequest and Credentials

    Just a thought if you have control of the requested site. You can use IIS to require window authenticated users or use the Web.config. In iis check to allow anonymous access and try the web.config method in place of that. <authorization> <deny users="?" /> </authorization>
  12. RTomes

    debugging problem

    I knew someone with the same issue. The uninstalled iis, dot net frame and com+. Then they reinstalled com+, iis and dot net framework in that order and all was well.
  13. RTomes

    How to insert a variable into HTML code? &lt;%=myVar %&gt; doesn't work?

    Works better with single quotes. <asp:label text='<%=myVar %>' /> You also need the runat=server or the control will not render if this is inteded to be a asp:label. Make sure myVar is Public and not Private and that it is assigned it's value on Page_Load.
  14. RTomes

    scrolling to end of text in textbox on ASP.NET page

    On the server you can use: Place a literal control add the very end of the HTML page but within the <Form></FORM> tags. The literal has an id of "MyLiteral" MyLiteral.Text = "<script>window.setTimeout(""document.getElementById('" & MyTextArea.ClientID & "').scrollTop=10000"",500)</script>"...
  15. RTomes

    Where to enter &quot;WHERE&quot; clause in a Crystal Report?

    I have filtered the data before assigning it to a datasource (dataset or XML file). From looking at the code below is looks like I have done some filtering on the report itself. (Did this last year) There may be other ways but filtering it first was the easiest approach. Here is some code I...
  16. RTomes

    Highlighting and Hyperlinking Datagrid Text!

    Thanks, I now know what those icons represent.
  17. RTomes

    Highlighting and Hyperlinking Datagrid Text!

    Not clear what the problem is. You should re-phrase the question.
  18. RTomes

    DataGrid

    You can have the entire grid editable if you want. For instance you can have a column with a checkbox and others with textboxes. Use a column with visible=false that contains your key. In the submit button click: for each item as datagriditem in DataGrid1.items dim Customer_ID as string =...
  19. RTomes

    Problems updating from datatable changes...

    You don't need to use the same instance of the data adapter. You do need it configured to update,insert,delete. It is done with one drag of the mouse when you drag your data table from server explorer onto a component or page. Or use the wizard...
  20. RTomes

    Place holder

    Try butting the placeholder right up against the <TD> tag. <TD align=center><asp:PlaceHolder id="phControl" runat="server"></asp:PlaceHolder> Also I noticed it looks like you need a closing </tr> and a closing </table> tag. phControl.Controls.Add(new LiteralControl("<td class='label'>"))...

Part and Inventory Search

Back
Top