Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

15 Posted Topics

Member Avatar for Jazerix

would be nice if you shared how you got it working with those of us who have not.

Member Avatar for Sivakumar_1
0
297
Member Avatar for jimib

Here's the code I use to show an swf file that's located inside my project (in the directory SWF. It works fine. However, SWF files are huge and I would like to keep them in an external directory. I put some in my development server (C:\Program Files (x86)\Common Files\Microsoft Shared\DevServer\10.0\SWF) …

0
99
Member Avatar for spherecons

Check this out: [url]http://tutorial.jcwcn.com/Web-Design/ASP-NET/NET/2007-07-03/1921.html[/url] You will have to convert your ASP files to ASPX files with aspcompat="True" in the page directive header. Then you will have to fix the errors because you have VB script instead of VB. It's a pain but the debugger will then work. Next, learn ASP.NET …

Member Avatar for jimib
0
160
Member Avatar for jimib

I have a very complex multi-page form I am developing in the Crystal Reports which is included in VS2008. There is always 1 Page A. There may be 1 or more page B. There may be 1 or more Page C. Page A has 7 subreports and a header from …

Member Avatar for jimib
0
193
Member Avatar for jimib

[CODE] <%@ Page Language = "VB" aspcompat=true Explicit="True"%> <%Dim src As String = " bet "%> <html> <head ></head> <body > <form name=loc action=testsac.aspx method=get> <table class=s0 width=100% cellpadding=1 cellspacing=1 align=center border=1> <tr class=s0 align=center> <td> Search For: <input class=s0 size=50 name=src value=<%=src%>> <input class=s0 type=submit value=Search /> <td></td> </tr> …

Member Avatar for almostbob
0
119
Member Avatar for jimib

could be this is an HTML problem, but I'll take the help anywhere I can find it... [CODE] <% @ Page Language = "VB" aspcompat=true Explicit="True" Dim src As String = " bet " %> <html> <head ></head> <body > <form name=loc action=testsac.aspx method=get> <table class=s0 width=100% cellpadding=1 cellspacing=1 align=center …

Member Avatar for jimib
0
132
Member Avatar for murali2joy

[QUOTE=murali2joy;1015192]Hi I've a web application in ASP. I'm planning to develope the future pages in ASP.Net. Is there any way to use the same old ASP pages (without converting them to .aspx) and built the future pages in ASP.net.[/QUOTE] You can use the asp pages side by side with the …

Member Avatar for jimib
0
94
Member Avatar for jimib

I have a text box that I use as part of a search function. Whenever the user searches for "bet" it finds the first string that includes "bet", as in "abet". That's OK. When the user searches for " bet " it finds the first instance of " bet ". …

0
86
Member Avatar for troy19

[code]fs = CreateObject("Scripting.FileSystemObject") mfile = "nameit" outdir = "c:/dir/" mstring = outdir & mfile Conn = fs.OpenTextFile(mstring, 2, True) Conn.WriteLine( "mytextline1" ) Conn.WriteLine( "mytextline2" ) Conn.Close() Conn = Nothing fs = Nothing[/code]

Member Avatar for chsab420
0
99
Member Avatar for 2eXtreme

<%@ Page Language = "VB" aspcompat=true Explicit="True" %> <!-- #INCLUDE file="utils.aspx" --> <% Your vbs script here %>

Member Avatar for mejohn
0
498
Member Avatar for jimib

I need to write to a textfile and name it with an extension other than ".txt" (an archive file) . For example: myfile.123 I can't seem to get around the file system object adding ".txt" so my filename becomes myfile_123.txt Do I need to write it another way or is …

0
118
Member Avatar for dthatsme33
Member Avatar for jimib

I am new to asp.net though not to asp. I want to display two gridboxes, the first with master records and the second with child records linked to the master table id. The idea is to change the child records when the parent record is selected, or ideally, when the …

Member Avatar for jimib
0
138
Member Avatar for shawn.bordeaux

How is the user logged in? If you are using the asp.net login control you can refer to his user id as user.identity.name hope it helps

Member Avatar for shawn.bordeaux
0
191
Member Avatar for jimib

I am attempting to configure a datasource in an AJAX web page from an existing postgreSQL database that resides on our server. I have done this many times with MySQL, no problem. When I finish the configuration for the PostgreSQL Database in the "Add Connection" wizard of Visual studio 2008, …

Member Avatar for jimib
0
121

The End.