Search

You searched for the word(s): userid:624354

Matching Posts

  • Re: urgent help in javascript

    Sorry for the confusion, I glossed over the showModalDialog detail. This method is much more complicated, for a couple reasons: showModalDialog is only implemented in IE Maybe your application is in-house, and this is not a problem...but... showModalDialog is designed to show an existing page There is a way to do this if 'page2.aspx' is an actual page, rather than the dynamic one generated in the example above...but... showModalDialog is designed to show static content there is a workaround for this
    Posted to Client Side Web Development (Forum) by JDHill on 1/10/2006
  • Re: CSS: Need help - floats won't line up unless content is inside a data control!

    There is an unnamed <div> just inside your 'centerContainer', which is sibling to 'lh-col'. Try setting it to width:70%. Good Luck! ~JD
    Posted to Client Side Web Development (Forum) by JDHill on 1/10/2006
  • Re: Center Align all content on webpage

    It's not too hard, really. You just need to use a couple of sacrificial positioning <div>s: <html> <head> <title>horizontal and vertical centering using CSS</title> <style type='text/css'> body { /* get rid of the browser's built-in margins */ margin:0; padding:0; } #container { /* this div stretches to the size of the page */ width:100%; height:100%; } #centering { /* we need to know the size of the content area, so we can center it using relative locations and
    Posted to Client Side Web Development (Forum) by JDHill on 1/9/2006
  • Re: urgent help in javascript

    This should be what you're looking for, it's pretty self-explanatory. First the JavaScript. We'll create a function we can call that will create a new window, and then write a bunch of HTML and JavaScript into it: function popUp(targetTextBox, initialValue) { var wdw='width=640,height=480,left='+((window.screen.width/2)-320)+',top='+((window.screen.height/2)-240)+',scrollbars=1,resizable=1,status=1'; pop=open('','new_window',wdw); pop.document.write('<html>'); pop.document.write('<head>
    Posted to Client Side Web Development (Forum) by JDHill on 1/9/2006
  • Re: Visual Studio 2003 behavior for Visual Studio 2005

    You'll need to use VS2003 with all v1.1 applications, and VS2005 with v.2.0 applications. You can have them both installed at the same time. Hope it helps... ~JD
  • Re: Response okay?

    Short answer...no. The client will need to be able to determine if it received the correct data. Possibly, you could expose another web service dedicated to tracking successful/unsuccessful transactions. This would return nothing, but the calling parameters could be something like 'clientID', 'transactionID', and 'receivedOK', or something similar. This is quite superfluous, though, because if the client is able to determine valid or invalid data, it could just repeat any unsuccessful request. I
    Posted to XML Web Services (Forum) by JDHill on 1/5/2006
  • Re: Can I add a custom property to controls?

    [correction:] JDHill wrote: Click the 'Browse' button, and locate MyLink.dll in the LinkEx Project's release folder Should read: "Click the 'Browse' button, and locate MyLink.dll in the MyLink Project's release folder..."
    Posted to Data Presentation Controls (Forum) by JDHill on 1/5/2006
  • Re: Can I add a custom property to controls?

    <edit> "Click the 'Browse' button, and locate MyLink.dll in the MyLink Project's release folder..." </edit>
    Posted to Data Presentation Controls (Forum) by JDHill on 1/5/2006
  • Re: Silly Question

    In the main menu, try checking: View>Non Visual Controls (Ctrl+Alt+Q)
  • Re: Can I add a custom property to controls?

    No problem. You'll need to download Visual Basic 2005 Express Edition to do so, but once you do, the code is simple. First create a new 'class library' project, naming it 'MyLink'. Once inside the project, rename the Class1.vb file to 'MyLink.vb'. Right-click the 'Project' folder in the Solution Explorer, and click 'open'. In the 'References' tab, click 'Add', and select the 'System.Web' library. In the MyLink.vb file enter the following code: Public Class MyLink : Inherits System.Web.UI.WebControls
    Posted to Data Presentation Controls (Forum) by JDHill on 1/5/2006
Page 1 of 10 (92 items) 1 2 3 4 5 Next > ... Last ยป