Send the Data From Forms to Emails


senddata

Just a newbie in web development, also in ASP and PHP.
I just wanna ask how to send the data gathered from forms to emails?

Plz. help

Here is a php script that will send any form information to an e-mail address

Click on the Link given below to More Details:
http://bit.ly/2cbSGyq

How to Reach a Specific Folder


thatserverside

How to reach a specific folder in my webuser’s computer.I want when a user click a link, my asp page have to go a spesific folder
Is there any ocx or dll to reach webuser’s computer?
Ocx came from Microsoft on MSN Space. when user accept activex, it reads our harddisk to add pitcures. There must have been an ocx. I have to find or I will die
No, u can not do it
You can make an ocx yourself, but it works on IE only.

Click on the Link given below to More Details:
http://bit.ly/2cmkKQX

.ASP Code For Links


aspcodes

I am looking for some .asp code to use where other webmasters can submit links for approval (moderated), and perhaps some code that checks reciprocal links, and if legit, then will allow thier link on your page?

You earn to use XMLHTTP and of regexp to check link in other page

Click on the Link given below to More Details:
http://bit.ly/2cjv7pJ

Reading Data From XL


readingjdata

I am reading data from XL and displaying on a web page and as the data is more i have to scroll the data upwards.

But how do I see column names always?
As the datascrolls up, by column names are also gone up but I need to keep them and scroll only other rows.

Please help me. have an absolutely positioned (css) div with the column names always placed at a TOP and LEFT position.

have something like frames, or JavaScript working there

Click on the Link given below to More Details:
http://bit.ly/2bUrf99

Not Allow More than a Specified Number of Submissions Per IP Address


spammer1

Click on the Link given below to More Details:
http://bit.ly/2bXu2of

I have a spammer attacking my ASP contact forms on my website. They’re just a really basic ASP form using CDO. My host suggested that I redesign the forms to not allow more than a specified number of submissions per IP address. Does anyone know how to do that?

Use an image captcha into your form. google “captcha”

Captcha is only effective if you’ve got spammers that are spamming your site programmatically, however. If you’ve got spammers that are going in and manually submitting your forms.

You should also check and see if the CAPTCHA has a counter to block x number of wrong submitted CAPTCHA inputs. And have a redirect to set to take them to a diffrent page when it is reached.

H-Sphere on One Compute to Another


If we install H-Sphere on one computer, can we later move all services to separate servers?
Yes, but it will require some downtime. Yet if you plan to grow rapidly (more than 3 servers in the next 3 months), it makes sense to start with 3.
Click on the Link given below to More Details:
http://bit.ly/2bSI9Vz
onecomputeanother

Prevent Backing Into a Site


testcode

How do you prevent a user who doesnt log off a site from backing into a site if they leave it. Say for example a person logs into http://www.cpwebhosting.net but they dont log off, they instead type other domain name into the browser. Once they are on other domain name they decide to hit the back button to get back to cpwebhosting.net, the actually logged in account. How do i prevent them from doing so, and if they try to back into the site it tells them to log on again? Is this possible? I need help, new to ASP.
Click on the Link given below to More Details:
http://bit.ly/2bSBN8Q

Access Web Controls From a Code-Behind Page?


webcontrols

http://bit.ly/2cjvUFM

How can I access web controls from a code-behind page?

In the general declaration for your code behind class, create a control variable with the same name as the id of the control in your .aspx file:

Public Class CodeBehind : Inherits Page

Public ItemsGrid As DataGrid

Protected Sub Page_Load(ByVal Sender As System.Object, ByVal e As System.EventArgs)
If Not IsPostback Then
ItemsGrid.DataSource = GetMyDataSource()

ItemsGrid.DataBind()
End If
End Sub

End Class

Only One Form Per ASP.Net Page?


perpageasp

http://bit.ly/2ccpRm9

can i have only one form per ASP.Net page?

No,You can have multiple forms, but only one form can be set with the runat=”server” attribute.