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: *

  • Users: euntair
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. euntair

    Array question

    Does the javascript array object have a means of retrieving its name/id?
  5. 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 =...
  6. 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?
  7. 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...
  8. 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...
  9. euntair

    ValidationSummary

    Is there a way to add a message to a ValidationSummary in code behind?
  10. 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.
  11. euntair

    request.browser.browser question

    Is there an online resource that shows what browsers are detected with the request.browser.browser class?
  12. 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 -...
  13. euntair

    User Control accessing MasterPage elements?

    How can I access MasterPage html elements from a User Control click event? I have tried: in master page <div id="menu" runat="server"></div> in click event for control: UserControl uc = (UserControl)LoadControl("a.ascx"); Page.FindControl("menu").Controls.Add(uc);
  14. euntair

    XmlAttribute creation problem

    The code below is placing \ in front of all quotation marks. Is there a way to keep this from happening or remove them? <system-page> <name>first_1</name> </system-page> XmlDocument xd = new XmlDocument(); xd.LoadXml("<system-page><name>first_1</name></system-page>"); XmlNode xn =...
  15. euntair

    XmlDocument, XmlNode and XmlNodelist

    XmlNode pages = xd.SelectSingleNode("system-index-block/system-folder"); XmlNodeList xnl = pages.SelectNodes("//system-folder|//system-page"); How do I stop from getting parent items when I do a greedy search through the children of a node?
  16. euntair

    Upgrading blues

    I was forced to upgrade from VS 2005 to VWD 2008 and now the Asp.Net Development Server is wanting to be set up. I've done several days of searching for a means to change DS from the VWD IDE with no luck. How do I change it so all of my projects automatically launch the DS?
  17. euntair

    CS3 path problem

    I have tried every way I can think of to define a path to a .swf file. The output is from CS3 and it works on my home system. Here is an test page with all of the path types: http://www.sdwingchun.com/test/scott.asp and http://www.intraflux.com/scott.asp. What am I doing wrong?
  18. euntair

    ODBC\Oracle Question

    I am using a DSN connection to an Oracle database and am having problems with getting the syntax correct for stored procedures/fucntions. Below is what I have so far: This function is working var password varchar2(70); exec :password := cascade.ae.get_password('srider'); print password...
  19. euntair

    PL/SQL newbie

    How would I run the procedure below in SQL+? function get_password(v_account in varchar2) return varchar2; function get_password(v_account in varchar2) return varchar2 is results varchar2(70); cursor c is select password from cascade.cxml_user where username=v_account; begin...
  20. euntair

    MatchCollection/Select Question

    In the code below, the match collection grabs all of the matching items in a string but the select doesn't hightlight the last one. if (input.Text.Length > 0) { Regex r = new Regex(regex.Text); MatchCollection mc = r.Matches(input.Text); formatted.Text = mc.Count.ToString(); int...

Part and Inventory Search

Back
Top