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 strongm 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. euntair

    Control question for name attribute

    The information I am looking for would be for setting up logic client-side. I am looking for a way to know and/or control the name attribute pre-render.
  2. euntair

    Control question for name attribute

    Code-behind. If I supply the name, or know what the system generated, I could call an control directly instead of .js looping through the controls.
  3. euntair

    Control question for name attribute

    Thank you in advance. When a System.Web.UI.WebControls.DropDownList is used is it possible to override the name attribute? Using the .ID will give both id and name attributes the same value. Using .Attribute for id and name will apply them only after .Net assigns a generated name attribute...
  4. euntair

    Update In Routine quesiton

    That was exactly what I was looking for. Thanks!!!
  5. euntair

    Update In Routine quesiton

    The routine below updates the first record when multiple record numbers come through the parameter accounts. Is there a data type that pass comma delimited values like 1,2,3,4,5? CREATE DEFINER=`root`@`localhost` PROCEDURE `set_admin_accounts_state_zero`( accounts varchar(300) ) BEGIN...
  6. euntair

    Intermittent file access

    This code is to display what I am doing to remove the filestream from memory. There is other methods that handle the file not existing, etc. I did have some luck by placing the instance of the filestream in the .Save method. Since the .Save method does need to store data, I can't use read only...
  7. euntair

    Intermittent file access

    Thanks Jason. I should have included how I am opening the filestream. Maybe I am doing something wrong in this: public class WebProjectInfo { // constructors public WebProjectInfo() { } // value methods public bool FileExists(string RelativePath) { try{ FileInfo fi = new...
  8. euntair

    Intermittent file access

    Thank you in advance. I have intermittent access to a .xml file in App_Data. The file is only used in a portion of the program but there are times when it throws a "...because it is being used by another process." error. I've included everything I could find that is supposed to close the file...
  9. euntair

    Array question

    Does the javascript array object have a means of retrieving its name/id?
  10. euntair

    .Evaluate xpath statement

    I tested /project/pages/page[@completed='n'][not(text())=''] at http://www.mizar.dk/XPath/Default.aspx with success but the xpath expression below doesn't work in C#. How do I re-write the xpath statement so I can use .Evaluate to return a empty node-set in C#? string xpath =...
  11. euntair

    Web service advice

    Really? Nobody?
  12. euntair

    Web service advice

    I am writing an ASP.Net newsletter program and would like to space out when the email is sent. Would a web service be what I need to accept the data and return a void response, then process the data?
  13. euntair

    Dynamic button click event

    How do I link a click event to a button that is created in code behind? What I have below is what makes sense atm, but gives me a "Value cannot be null. Parameter name: child" error. What am I missing? using System; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; public...
  14. euntair

    Nested Table, TableRow and TableCell

    I am having a problem with a nested TableCell object putting all of the data in the last page when it should be distributing it. Is there something I have to do beyond creating a new instance? i.e. TableRow page = new TableRow() int page_id = 1; int row_id = 1; TableCell pagecell = new...
  15. euntair

    ValidationSummary

    Is there a way to add a message to a ValidationSummary in code behind?
  16. euntair

    Intellisense not updating

    That was it. :P I didn't have some of the classes set to public. Thanks for your help.
  17. euntair

    Intellisense not updating

    I have updated my class library, compiled it, and when I use it in a ASP.Net project it only shows a portion of the classes in the namespace.
  18. euntair

    request.browser.browser question

    I need to know those values so I can test for them.
  19. euntair

    request.browser.browser question

    Is there an online resource that shows what browsers are detected with the request.browser.browser class?
  20. euntair

    Form resize event

    I have the following code resizing a textbox. The width is working as expected but the height isn't responding. What am I missing? private void Form1_Resize(object sender, System.EventArgs e) { Control control = (Control)sender; textBox1.Size = new Size(Form1.ActiveForm.Size.Width -...

Part and Inventory Search

Back
Top