No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
Actuallly, it differs for each external site. I use three right now and each one is a tad bit different. You need to search the particular site for the code to use to include their information. Usually it is only one or two lines of html code that is needed.
Hi, I am fit to be tied here. I have a page that feeds information into a new page. I have it put the information into a label. This works great. [code]<asp:Label ID="lblItems" runat="server"> <% if PreviousPage IsNot Nothing then dim SourceLabel as Label dim strMsg as string SourceLabel= PreviousPage.FindControl("lblItems") …
I just replaced a bunch of tables with datagrids for the purpose of easier coding. The tables are all in <div> codes so they are hidden, using CSS, until a user clicks a link. I have one <div> that is not hidden. It shows when the page is first loaded. …
I am attempting to figure out how to use a datagrid with checkboxes. I found some information for using an item template and the FindControl method. I am using Dreamweaver to program so I'm sure I'm not getting all the bells and whistles that VB.NET has to offer. I'm stumped …
There are a couple of methods... I use this one [URL="http://code.google.com/p/submodal/"]Submodal[/URL] You can also do a little balloon type popup. I use this as well...[URL="http://www.dynamicdrive.com/dynamicindex5/balloontooltip.htm"]Balloon Tip[/URL]
Hi Gary, It looks like your problem is the connection to the database. [code] 'Open a connection to the database Dim objConn Set objConn = Server.CreateObject("ADODB.Connection") objConn.ConnectionString = "DSN=blankDSN" 'objConn.Open [/code] The first thing to check is to see if there is actually a DSN on the server. If not, …
I think it would be helpful to see some of the code. Is the text within a scrolling <div> using CSS? If that is the case, the words are scrolling. What do you mean when it rolls down? More information is needed. Can you post a little bit of the …
The End.
WinginSue