1,828 Topics

Member Avatar for
Member Avatar for thebluestar

Here I try to make a dynamic site, means the content only is displayed in a main part of website.Hmm, all related pages are called by the values that are passed by the URL. Here is my source Firstly, from the main.asp page I add page dynamic_site.asp to show other …

Member Avatar for fashion gilr
0
144
Member Avatar for Nada_ward

Hello I want to move pictures vertically in ASp page. I will take the pictures from sql data base. but I don't know how I can display them. please help

Member Avatar for Sinha's
0
67
Member Avatar for click_twinkle

1. Updation in Records 2. Wild cards 3. Deletion of Records 4. Display attribute of a file 5. File copy 6. Get disk capacity

0
61
Member Avatar for click_twinkle

Program to display configuration of a local system with the help of VB script?

0
69
Member Avatar for click_twinkle

Can anyone Write program to display the system specifications of client system with the help of VB script?

0
58
Member Avatar for thebluestar

I have tried to include a JavaScript asp file into a vbscript asp file, but I did work? I know because they are "incompatible", but I don't know how to solve it!

Member Avatar for hielo
0
87
Member Avatar for SBA-CDeCinko

I have an ASP.NET gridview where I allow the user to edit a record. I need to validate multiple fields as one. I need to require that the user either enter a first and last name OR a company name. All three cannot be blank. Most of the sample code …

Member Avatar for SBA-CDeCinko
0
143
Member Avatar for thebluestar

I have tried to use session to track/ say 'Hello' to the user who is online. However, I'm very new to use this object and actually, I'm still not clear all about the global.asa file. I mean we write all methods about sessions we'll in it , then call it …

Member Avatar for punitdam
0
86
Member Avatar for thebluestar

I using the value pass from url to open a new page but there are some mistakes, but I cannot find them here is my all files to do that: [COLOR="Red"]main.asp[/COLOR] [CODE] <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> …

0
62
Member Avatar for CarterLangley

Hi all, Did a site for a group I belong to. Now they want me to add a login page that would take people to a members only area. Need to be able to validate the users via a database. The only database I have available to me is Access …

Member Avatar for Ezzaral
0
146
Member Avatar for kcomeby

Hello, my problem is complicated and my english is limited, sorry for that. i have a website and im writing control panel for it. I've worked with databases too many times and i know what should i do. I have a code like this: [CODE] Rs.Open "SELECT * FROM news", …

Member Avatar for sergb
0
93
Member Avatar for thebluestar

I'm trying to study ASP and sql server 2005 to create the website.However, I don't know how to create a table having a column to store the image, I have never tried this before, I don't know sql server 2005 has data type of image or not. hmm, the flow …

Member Avatar for smariano77
0
93
Member Avatar for rajabca

when i selecting image from fileupload control that image display in image control how to display at runtime in asp.net VB language... Pls give example code.

Member Avatar for 726855
0
63
Member Avatar for munna_001

hi i want to create to automated ASP scripts. this what i am planing - -user goes to website, inputs the time, clicks submit -the script than should run everday at specified time any suggestion will be hightly appreciated

Member Avatar for seagulf
0
74
Member Avatar for saeed_s261

[CODE]SqlConnection con = new SqlConnection(connection string); SqlCommand cmd = new SqlCommand("select bookfile from books where bookfile='....' " , con); con.Open(); SqlDataReader dr = cmd.ExecuteReader(); if (dr.HasRows) { // Is Exist }[/CODE] this code is for check whether a book file is exist in database?

0
36
Member Avatar for ghost_from_sa

Hey guys im having an issue with a text file going past the end of file when its reading the lines even if there is text inside it... [CODE]<% // Gets the request var strQuery = Request("Show") + ""; var fso = Server.CreateObject("Scripting.FileSystemObject"); var errorMsg = false; var strError = …

Member Avatar for ghost_from_sa
0
121
Member Avatar for mldardy

I keep getting this error: Procedure 'cnpcpiFarmFormAssignField' expects parameter '@chUserId', which was not supplied. [CODE]if request.Form("hidAction") = "" and request.QueryString("sid") = "" then sFormAction = "New" else Set cmd = Server.CreateObject("ADODB.Command") with cmd .ActiveConnection = DataConn .CommandType = adCmdStoredProc end with 'On Error Resume Next if request.Form("hidAction") = "New" then …

0
71
Member Avatar for hitro456

Hi Folks, I have a test.aspx page, which creates dynamic text boxes according to some condition, in following way.... TextBox t1; //Declared at class level button_click(...) { .. . . while(someCondotion) { t1 = new TextBox(); t1.ID = "TextBox" + count; ProductPanel.Controls.Add(t1); } . . } //button click ends now …

0
70
Member Avatar for spherecons

Has anyone there got any experience of using ASP (not ASP.NET - but I'll come to that) with VS2008. The debugger dies whenever you change anything or stop it - which seems inelegant. Microsoft's response is to sniffily tell me that they don't support ASP beyond VS2005 and certainly won't …

Member Avatar for jimib
0
143
Member Avatar for gmsol

hi i m wroking in asp the below code work in internet explorere but does't work in firefox pls help me function DisplayMe(e) { //document.getElementById("CompName").value == //alert(e.id); var elTableRow = document.getElementById(e.id); var elTableCells = elTableRow.getElementsByTagName("td"); if (document.all) { document.getElementById("CompName").value=elTableCells[1].innerText; //var cell = elTableRow.getElementsByTagName("td")[1]; //var content = elTableCells[1].innerText; //document.getElementById("CompName").value=elTableCells[1] document.getElementById("City").value=elTableCells[2].innerText; document.getElementById("Country").value=elTableCells[3].innerText; …

Member Avatar for CollinHoward
0
185
Member Avatar for achinaseller
Member Avatar for johnnie.niles

I would like your assistance in creating a weekly and monthly report of my recruitment and office activities. I just want a design. Thank you for your help.

0
54
Member Avatar for ghost_from_sa

Hey guys, Im doing an assignment I want to be able to read a text file (one of 2 choices) that have either the latest entry or all entries based on a drop down menu. can you guys please give me some guidance here. The files are submitted using asp

0
84
Member Avatar for rambok4

What is the problem with the following login code? [code] Dim conn As SqlCommand = New SqlCommand("Data Source=RAHUL-034890AF0\SERVER2005;Initial Catalog=user_accounts;Integrated Security=True") conn.Prepare() Dim command As Data.SqlClient.SqlCommand = New Data.SqlClient.SqlCommand("select", conn.Connection) command.Parameters(1).Value = txtusername.Text command.Parameters(2).Value = txtpass.Text Dim i As Integer = command.ExecuteNonQuery conn.BeginExecuteNonQuery() If Page.IsValid Then Response.Redirect("~/salesbill.aspx") Else Lblerror.Text = "Username …

Member Avatar for kvprajapati
0
237
Member Avatar for AlanWarren

Hello Having, on a local development machine, successfully configured DCOMCNFG to allow an ASP.NET application to launch a Microsoft Word document using COM Interop, I am now experiencing problems with the configuration on a network test server. The problem is that when clicking the “Launch Word Document” button from within …

0
50
Member Avatar for nickbeare

Hi, I am a JSP newb. I have been scratching my head over this for a while. My task: to construct a POST and to read the response that comes back. I have been provided with some kits that illistrate how to do the job in ASP, ASP.NET and PHP, …

Member Avatar for ~s.o.s~
0
146
Member Avatar for kellyburby1
Member Avatar for rpgwebsolutions
Member Avatar for renu_kj

Hi I'm accessing a webservice from my website which returns results thru an XML file which works fine on IE. But Firefox doesn't allow CROSS DOMAIN XmlHttpRequests. so i googled to find a solution to make it work on Firefox and got this url which seems to be a good …

0
74
Member Avatar for Vampdee

I have an ASP application that we ported from one Webhosting company to another. The application was written several years ago by developers that are long out of reach and it formerly used ASPMail version 4.x for its sendmail routine. The new hosting company has persits libraries instead and I …

0
49

The End.