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

  • Users: seabaz2000
  • Content: Threads
  • Order by date
  1. seabaz2000

    Migration

    Hi, I was just wondering if there is any tool that can migrate the T-SQL stored procedures from SQL Server 2005 to the ANSI SQL that MySQL uses as I am trying to migrate databases at the moment. Thanks.
  2. seabaz2000

    accessing controls

    Hi, Is it possible to access the majority of the form elements, i.e buttons, labels, file uploads using their id's in the code behind page of an aspx page. I am having problems accessing certain types of elements. I can access labels and buttons but i can't seem to access, file uploads, divs...
  3. seabaz2000

    Way to update every column

    Hi, I was just wondering is there any way to update every column in a given table something like this. UPDATE #TempTableForData1 SET = " " WHERE VALUE = NULL This code above would aim to set every column that was null in the table to blank. I hope I am explaining myself correctly. Regards
  4. seabaz2000

    Add quotation marks to a web page

    Hi, Just a quick question, if I want to add quotation marks to a piece of text as is below. How do I do it. <asp:literal runat="server" text="Blah , Blah, "Blah" "/> OUTPUT Blah, Blah, "Blah" Regards
  5. seabaz2000

    Membership does not contain a definition for delete User

    Hi, I am trying to call a method of the Membership provider "Delete User". So I type in "Membership." and I get a drop down list of all the methods that I have available but when I select one of them and go to build the code, I get the error "Membership does not contain a definition for Delete...
  6. seabaz2000

    _doPostBack

    Hi, I was just wondering if it is possible to pass in a href in the eventarg section of the _doPostBack function so as to reload the page again with a different set of data. e.g current page is : www.myDomain.com/testing?date=05/06/07 I click on a button on the webpage and it calls the...
  7. seabaz2000

    AJAX RPC Call

    Hi, Just wondering would anyone know of any examples of code on the web where when a user sets an object client side a remote procedure call is made using AJAX to update a session variable server side?
  8. seabaz2000

    webparts in .net

    Hi, I am not sure if this is the place for this question, but I am attempting to access an element of a form using the document.getElementById function. But I am calling the function from inside an asp.net web part. When I call the particular object it just returns null signifying to me that it...
  9. seabaz2000

    Atlas and Webparts

    Hi, I watched the screencast by Marc Schweigert on AJAX Enabling ASP.NET 2.0 Web Parts with "Atlas" I attempted to do the same with a page of mine but with no success. I am unsure as to what I am doing wrong. No errors are popping up, its just that it still posts back the entire page and...
  10. seabaz2000

    Question marks

    Hi, I am just after deploying my website from my localhost to my online webserver, and there seems to be some sort of formatting problem. There seems to be quite a lot of question marks appearing everywhere there is a space left. I am unsure what to do. Regards
  11. seabaz2000

    Navigation

    Hi I was wondering if anyone could point me in the direction of a good javascript navigation tool. i.e. one that would list the number of pages in a certain section of a site and allow the user to browse them by clicking on the links on the navigation buttons.
  12. seabaz2000

    Possible to create a single string of text

    Hi I was just wonder whether or not it was possible to create a single line string of text in a word processor from the input of an already formatted piece of text. For example if I inputted the following code into a word processor <tr> <td align='right' valign='top'...
  13. seabaz2000

    Event Handlers and Variables

    Hi I am having problems with my event handlers. None of them can handle access the member variables of the class. I am not sure if its because of the way they are declared or its just a thing with event handling functions that they cannot access the class member variables. Regards
  14. seabaz2000

    Get the contents of a label

    Hi I am trying to get the contents of a label in javascript. Below I am trying to pass back in an end date through a url querystring. The end date is contained as text in the label below. When I try to do it this way all I get is an object and not the actual value inside the label...
  15. seabaz2000

    Problems using innerText

    Hi I am attempting to use the innerText function to place a value in a certain label on my website. Here is the code: <script language="javascript" src="calendarDateInput.js"> </script> <script>DateInput('orderdate', true, 'DD-MON-YYYY')</script><input type="button"...
  16. seabaz2000

    C# controls

    Hi Just wondering if its possible to write asp code in c# i.e. as follows. tblCell1.Controls.Add(new LiteralControl("<a href=\"javascript:OpenPopupPage('Calendar.aspx','<%=DateTextBox.ClientID %>','<%= Page.IsPostBack %>');\">\n")); Because when I run it it doesn't compile server side, it...
  17. seabaz2000

    Javascript Back button problems

    Hi I am using javascript to create a link on an svg diagram to go back. The link contains the url of the webpage that I wish to go back to. When the button is clicked all the necessary information is contained in the URL but the page remains the same i.e. it has not gone back. If I hit the...
  18. seabaz2000

    Object Reference not set to an instant of the object

    Hi I keep getting the error "Object Reference not set to an instant of the object" with the following piece of code XmlNode model = modelDoc.SelectSingleNode(strXPath); strName = (string)model.Attributes["name"].Value; not quite sure what is wrong with it. Regards
  19. seabaz2000

    Writing to a file on page load

    Hi I am attempting to write to a file on page load of a particular page, but when I do so the file doesn't seem to write at all. Here is the code. FileStream fout; try { fout = new FileStream("test.txt", FileMode.Create); } catch (IOException exc)...
  20. seabaz2000

    An alternative to using frames

    Hi I am currently building a website that contains a flash header with a navigation bar. I have currently split framed the site site and when a user clicks on one of the navigation buttons the appropriate page loads on the bottom frame. I wish to abandon the use of frames as they are a rather...

Part and Inventory Search

Back
Top