Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
22% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
7
Posts with Downvotes
6
Downvoting Members
2
3 Commented Posts
~17.6K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

95 Posted Topics

Member Avatar for shailaja mohite
Member Avatar for rjbrjb777
Member Avatar for RCDAWebmaster

Most likely a problem with the file path... or the routine itself will never work. While a lot people use DLLs to process ASP uploads, it can be done using pure ASP, but the routines are much more complex than what your script suggests.

Member Avatar for remunance
0
399
Member Avatar for denmarkstan
Member Avatar for ArtistScope

I have a database which stores some fields as encrypted data. The reason for this is because if the database is accessed from the server then server staff cannot get a list of names and email addresses. But the problem is that when I retrieve a list of my users …

Member Avatar for ArtistScope
0
124
Member Avatar for marliah
Member Avatar for MayaPawar

[QUOTE=MayaPawar;1612879]i have one html page. i have created one asp file that display data from database also i have created html file which contains all design of web page. when i combine this two . it displays table from database but images are not displayed . [/QUOTE] Firstly, your database …

Member Avatar for ArtistScope
0
308
Member Avatar for Rizi004

IIS is not installed on the Basic version, but on higher versions it can be "enabled" simply by "Add/remove Windows components".

Member Avatar for ArtistScope
0
228
Member Avatar for ste713

It's not possible unless George also has 10,000. Maybe he got a loan from Fred?

Member Avatar for jcarbillon
0
97
Member Avatar for dips255
Member Avatar for dips255
0
123
Member Avatar for fahad100

I think that you may mean XP Pro as XP Home doesn't support PWS normally. But if you have IIS running already, you may need to enable ASP in the site/server properties. Also add a VB statement to the first line... [CODE]<%@LANGUAGE="VBSCRIPT"%>[/CODE] For a personal web server (PWS), [url]http://localhost[/url] works …

Member Avatar for mlesniak
0
144
Member Avatar for sourabhacooli
Member Avatar for judithSampathwa
Member Avatar for judithSampathwa
0
176
Member Avatar for hinzhonee
Member Avatar for ArtistScope
0
141
Member Avatar for radujit

First check that that your mail server doesn't send everyone 2 emails anyway. I have a few clients that when they send an email, their server or mail program sends 2 of the same mail... every time. So make sure that is not happening first.

Member Avatar for ArtistScope
0
95
Member Avatar for spence89

At what stage is the PDF created? Wouldn't it be better to complete the construction of the invoice data and then send to PDF?

Member Avatar for spence89
0
510
Member Avatar for adrianSigamoney
Member Avatar for erioch

The error report may be concerned about the lack of filtering on the data accepted in your request fields... there is currently no filtering which leaves you open for a SQL Attack which can either crash your database/site or be used to throw up information that can further help a …

Member Avatar for reygcalantaol
0
441
Member Avatar for bmason
Member Avatar for PotaZinga

Why would you want to use JSON and why would you want to involve ASP in something that ASP already does so well on its own?

Member Avatar for PotaZinga
0
101
Member Avatar for java_programmer
Member Avatar for umamahesh2020
Member Avatar for adrianSigamoney
Member Avatar for adrianSigamoney
0
108
Member Avatar for Pardeep Kumar
Member Avatar for bevssi

[CODE] If isNull(mem09) Then mem09 = pyrstartmem & "*" End If <tr align="center"> <td class="td3" ><%=(church)%></td> <td class="td3"><%=(mem09)%></td> <td class="td3"><%=(mem10)%></td> </tr>[/CODE]

Member Avatar for ArtistScope
0
129
Member Avatar for vinayak.v

Version update notices are usually maintained by polling an online record of the current version number. So now you have 2 methods to notify users: - pop a window from within the application - send an update invitation by email Some installer makers include the option of using their ready …

Member Avatar for ArtistScope
0
175
Member Avatar for Majid Sarrouh

For a timed delay it's best to use JavaScript. But if you want to return to the submission form, why leave it in the first place, when you can submit to the same form and display the results that it reads from its own request fields... or retrieve the results …

Member Avatar for ArtistScope
0
185
Member Avatar for ammwebmaster2

"I have other pages that use layers and they work fine in IE and Mozilla with the above code." I'll bet there is a difference that you haven't noticed, and my first guess will be this line... [CODE]<html xmlns="http://www.w3.org/1999/xhtml">[/CODE] And unless you have specific need for XML support, I would …

Member Avatar for ArtistScope
0
99
Member Avatar for jrotunda85

The simplest way will be to use an iFrame for the menu, otherwise you will be mixing a JavaScript and ASP cocktail that probably won't provide the flexibility that you want.

Member Avatar for ArtistScope
0
146
Member Avatar for NewOrder
Member Avatar for CleverHans
Member Avatar for babafemi
Member Avatar for himanshu_roy81

Gridview is an ASP.Net class/control. Try posting your problem in the ASP.Net forum... including some of your code to get them going.

Member Avatar for ArtistScope
0
79
Member Avatar for stevenfagan

I almost never limit the data type by setting it to anything but text... because it saves lots of time trying to debug little issues like the one you have here. Sure, defining data types my be a norm, but after writing some applications in pure ASP that required 6,000 …

Member Avatar for ArtistScope
0
305
Member Avatar for Papa_Bear

I think that you need to stick to common fonts because you can't find out what fonts they may have installed, and if you could then you might have a list of too many fonts, some of which may not display on a web page. For example, on my computer …

Member Avatar for ArtistScope
0
296
Member Avatar for erioch
Member Avatar for crobson

Should work as is but try... [CODE]Response.Redirect("newsitem.asp?id=" & news_item)[/CODE]

Member Avatar for AceDesignz
0
273
Member Avatar for stevenfagan

Does the textarea support rich text, or is it the standard textarea. If it's rich text then you may be getting MSWord font formatting which isn't noticed until checking in code view. If it's a standard text area then some characters like apostrophes and other punctuation marks can be non …

Member Avatar for ArtistScope
0
238
Member Avatar for JKemp

That error usually means a permissions problem, and that the Access database needs to have read/write permissions set for Everyone.

Member Avatar for ArtistScope
0
482
Member Avatar for shailaja mohite

Without seeing the code used it's difficult to know whether you are uploading the image separately or as you submit the whole form. If submitting the image with the other form fields, and staying on the same page to provide a preview, then yes the form will need to refresh, …

Member Avatar for ArtistScope
0
143
Member Avatar for newlearner2008

Firstly, "aspmail.asp: is not ASP.Net Your form calls "Persits.MailSender". Check to see if your web host provides that specific service. Otherwise you may want to create a form that uses the CDOSYS already available on Windows Servers. [URL="http://www.daniweb.com/forums/thread335862.html"]Send mail using CDOSYS[/URL]

Member Avatar for ArtistScope
0
215
Member Avatar for shailaja mohite
Member Avatar for dips255

They are separate cookies so an additional cookie shouldn't break anything, or affect a cookie that has just been written.

Member Avatar for ArtistScope
0
116
Member Avatar for shailaja mohite

CDOSYS or CDONTS? For CDOSYS try: [CODE] Set ObjSendMail = CreateObject("CDO.Message") ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'Send using SMTP ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = strMailServer ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = strHtmlFormat ObjSendMail.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60 ObjSendMail.Configuration.Fields.Update ObjSendMail.To = strToEmail ObjSendMail.Subject = strSubject ObjSendMail.From = strFromEmail ObjSendMail.TextBody = strMessage ObjSendMail.Send Set ObjSendMail …

Member Avatar for ArtistScope
0
291
Member Avatar for Praveenkv

Are you writing the cookie on one page and then reading that same cookie on the next page? If so, you should have no problems with any browser.

Member Avatar for ArtistScope
0
59
Member Avatar for DaZZaMaN1990

You were almost right the first time... [CODE]<IMG SRC = "Images/<%= Recordset1.Fields.Item("Image").Value %>">[/CODE] or... [CODE] strImage = Recordset1.Fields.Item("Image").Value response.write"<IMG SRC=""Images/" & strImage & """>"[/CODE]

Member Avatar for AceDesignz
0
151
Member Avatar for varsha solshe
Member Avatar for terrirenner

PHP and ASP are two distinctly different programming languages that will not run on the same web page at all.

Member Avatar for ArtistScope
0
523
Member Avatar for Sidewalkwarrior

Has anyone considered DNS hijack? As I mentioned earlier I had the same symptoms and resolved the issue by changing DNS servers at the router.

Member Avatar for crunchie
0
275
Member Avatar for cmull

Not much coding is needed, but resources are... mainly 2 ingredients: 1. Encoding software 2. Media server There are many Flash streaming services and many are free that will host your Flash stream, from live recordings or static archives. Regardless of whether it's Flash or other movie media the principles …

Member Avatar for ArtistScope
0
91

The End.