1,828 Topics

Member Avatar for
Member Avatar for shotokanpoloto

I would like to validate columns in an asp:Gridview but am unsure how to do so as all the tutorials I have found show a previous version on Microsoft Visual Studio (I am using 2010). How do I validate each column of the Gridview? Thanks This is the code of …

Member Avatar for JorgeM
0
172
Member Avatar for anmolvatsa

FOR FOLLOWING CODE <%@language=VBScript%> <%Option Explicit%> <html> <body bgcolor="aqua"> <% Dim myConn Set myConn = Server.CreateObject("ADODB.Connection") myConn.Open = ("DRIVER={Microsoft Access"&" Driver (*.mdb)};DBQ="&"C:\Inetpub\wwwroot\tizagASP\razor.mdb;") myConn.Close() Set myConn = nothing %> </body> </html> I GOT FOLLOWING ERROR The page cannot be displayed There is a problem with the page you are trying to …

Member Avatar for ptduran
0
144
Member Avatar for zeroflee09

I have a different buttons for each item i have, each buttons has a function of which compute total price of item versus the quantity that have been entered in the textbox qty and summing all the total bill of all items to textbox3 or totalbilltext. but it seems that …

Member Avatar for JorgeM
0
160
Member Avatar for mlesniak

I have a VB.NET application that has a site.master with a navigation menu in landscape format. In my default.aspx I have a multiview component. When I select the second view in my multiview the navigation menu momentarily changes to portrait format and then back to landscape format. Ideally, I would …

Member Avatar for JorgeM
0
170
Member Avatar for n3xtgen

I am trying to make a basic page in ASP.Net by inserting into a MSSQL database. When I run the page it does not insert anything and no error is produced :( The connection string name is right as well as the table name and fields. This is my code: …

Member Avatar for Momerath
0
218
Member Avatar for munik.bell

I'll appreciate any assistance on this. The scenario; I have a database table with the following sample records; data1-------------dt2----data3------data4--------data5------data6 Brewing Plant-----2------10000------11/3/2012----1136-------person1@yahoo.com Brewing Plant-----2------10000------11/3/2012----1136-------person1@yahoo.com Car Plant---------1------5000-------11/3/2012----568--------person1@yahoo.com Brewing Plant-----1------5000-------11/3/2012----568--------person2@yahoo.com Car Plant---------4------20000------11/3/2012----2272-------person2@yahoo.com Brewing Plant-----3------15000------11/3/2012----1704-------person3@yahoo.com This is my requirement: I want just one notification email each sent to theses various persons with their information. …

Member Avatar for munik.bell
0
135
Member Avatar for jay.barnes

Hello! I've got a question here that has me scratching my head - I've got a table of IP addresses. Each octet has its own field (OCT1,OCT2,OCT3,OCT4). The first two octets are fixed, and will never change (so, the IP addresses on my table are between X.Y.0.0 and X.Y.255.255). As …

Member Avatar for jay.barnes
0
307
Member Avatar for BigHeart

i have a barcode 41/3/100 , 100 will be saved in data base when i scan barcode with scanner it will read 41/3/100 when i click the button how should i search the record only with 100 ???? help

Member Avatar for notconfirmed
0
133
Member Avatar for grafic.web

Hi there, i would like to create one page asp where i have 2 text fields and i can fill them with a name of city from where i wonna start to where i wanna arrive and calculate the number of km and the nearest cites Example : Text1 = …

Member Avatar for G_Waddell
0
123
Member Avatar for Vaspar

I am BSCS student, i have selected Cyber Spy as my Semester project.(C# nd ASP) it will basically get keylogs and screenshots from host computer and save that information in online portal for administrator to check what employees are doing. I have learnt about keylogging and have basic idea about …

Member Avatar for deceptikon
0
199
Member Avatar for vavazoom

Hello, In a label, I am displaying the number of characters left in a textbox. Once the user goes into negative characters remaining, the label text turns red. If they try to submit the form, an alert message will popup letting them know they have exceeding the limit of characters. …

Member Avatar for vavazoom
0
232
Member Avatar for jonnahealey

Hi All, Sorry if this isn't the appropriate place to put this question, but I'm new to the forums. My issue relates to ASP and a DSN-less connection. I have a website, which was built quite a while ago using DSN connections to an Access database, which ran on a …

Member Avatar for hielo
0
167
Member Avatar for vavazoom

Hello, I am trying to incorporate Javascript with ASP. I want to display in the Label how many characters the client has remaining in the textbox. The Label is not changing at all - any ideas? <script type="text/javascript"> function CheckCharCount(textBox, maxLength) { var charCount = maxLength - texBox.value.length; document.getElementById("lblCharCount").innerText = …

Member Avatar for JorgeM
0
1K
Member Avatar for vavazoom

Hello, I am trying to enlarge the font-size of an ASP:ListItem object using CSS. I have tried a few different ways - but it is not rendering. Any ideas on what would cause the ListItem to not pick up the CSS? **First try:** CSSClass="radioButtonList" under asp:RadioButtonList <style type="text/css"> .radioButtonList { …

Member Avatar for JorgeM
0
2K
Member Avatar for DaveD3

Hello, My name is Dave and I am a C# developer who is having trouble getting into web development. I am trying to develop an application that users can access from the web, enter search parameters, and the application will search text files stored on the server and return the …

Member Avatar for JorgeM
0
327
Member Avatar for ahmad_lovely

hi i wante make this template in image. please help me thanks. My template : ![1](/attachments/large/4/1.jpg "1") ![2](/attachments/large/4/2.jpg "2") ![3](/attachments/large/4/3.jpg "3") ![4](/attachments/large/4/4.jpg "4")

Member Avatar for ahmad_lovely
0
134
Member Avatar for owenransen

I've been trying to find a definition of this term: "HTTP endpoint" Does it just mean URL from a programmer's point of view, or something more?

Member Avatar for pritaeas
0
71
Member Avatar for red_ferrari007

ASP CODE: <html> <body> <% set conn=Server.CreateObject("ADODB.Connection") conn.Provider="Microsoft.Jet.OLEDB.4.0" conn.Open "D:\Inetpub\wwwroot\northwind.mdb" cid=Request.Form("Username") set rs = Server.CreateObject("ADODB.recordset") rs.Open "SELECT Username,add,pin,cost FROM Customers WHERE Username='" & cid & "'", conn %> <table border="1" width="100%"> <%do until rs.EOF%> <tr> <%for each x in rs.Fields%> <td><%Response.Write(x.value)%></td> <%next rs.MoveNext%> </tr> <%loop rs.close conn.close %> </table> Thank …

Member Avatar for JorgeM
0
145
Member Avatar for Master Mascus

Hey guys avtually i have a registration form ( a table of 3 columns, the name, textbox and the validations ). Everthing is working fine but i would like to do something which i am unable to do.. Actually in one row there is 2 validations (RequiredFieldVal and CompareVal), the …

Member Avatar for Master Mascus
0
217
Member Avatar for Aviplo

Hello, Can anyone help me in this, What i'm trying to do is that i try to break my page in case if i have too much record. But what happen is when i click on 'next' the record doesn't shows because the date that i select had been cleared …

Member Avatar for ainosilva
0
198
Member Avatar for dstoltz

Gulp, I hate to even ask because I think I know the answer... Has anyone ever, or does anyone know if ASP can be used to query a MUMPS database? Any information appreciated.

Member Avatar for dstoltz
0
107
Member Avatar for HansK

I have problem with external links, where users add additional characters to the end of a variable. The links should be something like "page.asp?ID=261", however I see many external links to the page with malformed additional characters, like "page.asp?ID=261FTR223". These are mostly from social networking sites. I need to clean …

Member Avatar for JorgeM
0
92
Member Avatar for grafic.web

Hi there, i need help to : How to pass variable ASP to JavaScript ? Example: myvar = "textvarable" i would like to get it from a form without refreshing the browser, if is possible with AJAX Thanks!!!

Member Avatar for ainosilva
0
93
Member Avatar for canniemar

Hi I have a website in which I am unable to click the checkout button or doCheckout. <% rsUsers.Close() Set rsUsers = Nothing %> The error I keep getting is that the line Set rsUsers = Nothing is incorrect. As I am a newbie at this I am lost as …

Member Avatar for ainosilva
0
84
Member Avatar for Rasool Ahmed

Hi guys, I am programming a page that test the speed of customer's typing in the page. So what I did is to save the current time in page loading event and in the another page it will subtract the time that came from the previous page and display it.So, …

Member Avatar for JorgeM
0
147
Member Avatar for maxpaine69

Hi all i am doing a littl chat page for a internal site, but what i really whant to kno is how do i refresh all the users on tha chat page?

Member Avatar for maxpaine69
0
84
Member Avatar for narsimhareddy

hi.....goodmorning to everybody, In my application if i entered a new record without using the storedprocedure can any one help me thanks in advance....

Member Avatar for abhishekabhi
-1
160
Member Avatar for alexcarter404

Hi All, I am trying to use the aspnet_regsql command to add asp.net schema to a database in the app_data folder of my project. I ran this command: aspnet_regsql -A all -C "Data Source=.\SQLEXPRESS;Integrated Security=True;User Instance=True" -d "C:\USERS\ALEX\DOCUMENTS\VISUAL STUDIO 2010\PROJECTS\ASPSLDB\ASPSLDB\APP_DATA\SLDBASP1.MDF" This should add the schema to the database using the …

Member Avatar for alexcarter404
0
96
Member Avatar for maxpaine69
Member Avatar for maxpaine69
0
144
Member Avatar for Cameronsmith63

Can it be done? <asp:MenuItem Text="Queries" Value="Queries"> <asp:MenuItem Text="New Query" Value="New Query"></asp:MenuItem> <asp:MenuItem Text="Search Queries" Value="Search Queries"></asp:MenuItem> <asp:MenuItem Text="Open Queries" Value="Open Queries"></asp:MenuItem> <asp:MenuItem Text="Resolved Queries" Value="Resolved Queries"></asp:MenuItem> <asp:MenuItem Text="Closed Queries" Value="Closed Queries"></asp:MenuItem> <asp:MenuItem Text="Cancelled Queries" Value="Cancelled Queries"></asp:MenuItem> </asp:MenuItem> Thanks

0
157

The End.