5,691 Topics

Member Avatar for
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
149
Member Avatar for Tippy_

Hi everyone. I have a query. I am learning Java and PHP and was thinking of taking ASP.NET too. Is Java and PHP enough or it is always good to have multiple skills. I mean professionally?

Member Avatar for pritaeas
0
44
Member Avatar for SQLpower

Hello, I was wondering how could I display around 10 rows vertically and 34 horizontally in a table view with ticks? Every row will have a tick, which upon saving will be added to the database. Any suggestions are highly appreciated!

Member Avatar for SQLpower
0
243
Member Avatar for HunainHafeez

i have a login page within asp.net 3.5 (c#) website, and sql server 2008 at backend, i wrote a store procedure to save password in hashed form using SHA1 algo during registration , now during login i want to compare etered passowrd with the one save in db, so i …

Member Avatar for HunainHafeez
0
398
Member Avatar for prasanta.nit15

I need a ASP.net readymate project with code and documentation. please help me. prasanta

Member Avatar for JorgeM
0
351
Member Avatar for HunainHafeez

i want to hash my password to SHA1 algo, in asp.net code and then want to compare it with hashed password in sql 2008 db, for login so how to hash it in asp.net code ?

Member Avatar for HunainHafeez
0
185
Member Avatar for HunainHafeez
Member Avatar for HunainHafeez
0
212
Member Avatar for jtok

Background: I am using Visual Studio 2005 Standard SP1 to create an ASP.NET website that accesses an SQL 2005 database. I am using vb.net as well. I am passing an ID in a query string from one page to the next, where I retrieve it using an SQLDataSource. The data …

Member Avatar for G_Waddell
0
2K
Member Avatar for nice_true

Hi! I work in NIC (National Informatics Centre). When I try to send email thorugh my asp.net code, I am not abe to do so, reason most probably being the ports being blocked by our ISP. To confirm, I fired telnet command for ports 25, 465 and 587, but in …

Member Avatar for G_Waddell
0
220
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
222
Member Avatar for sanjeewa.abeywardana

What is the best and fun way to learn Web Service in .NET plaform ,that can apply to real production environment? Anybody knows good projects to refer under codeplex site.. Or may be somewhere else

Member Avatar for sanjeewa.abeywardana
0
243
Member Avatar for shyleshs

Please solve this problem i am new to asp.net programming using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using System.Data.SqlClient; public partial class NewUser : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void TextBox4_TextChanged(object sender, EventArgs e) { } protected …

Member Avatar for HunainHafeez
0
1K
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
200
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
112
Member Avatar for adam321

Server Error in '/' Application. The connection name 'ConnectionString' was not found in the applications configuration or the connection string is empty. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated …

Member Avatar for JorgeM
0
258
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
98
Member Avatar for vivekanandaan

I have a domain registered. I've uploaded my pages in httpdocs of my webspace. Other html pages are working fine, but my asp.net pages are not working properly. when i try to load those pages i am getting error as below : Server Error in '/' Application. -------------------------------------------------------------------------------- Runtime Error …

Member Avatar for JorgeM
0
194
Member Avatar for dhameergovind
Member Avatar for Hakoo

Hello All, I want to create new pop window like this site have while login. How can I do this? Thanking you, Hakoo Desai.

Member Avatar for sunnivasa
0
612
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
95
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
87
Member Avatar for eric3

I do not know much code but have figured out alot of the past day setting up my first site but now I am perplexed and need help. I created the html code using NVU and like it. The issue is with a form I created to gather some information …

Member Avatar for winnersingh
0
241
Member Avatar for HunainHafeez

i am sending parameters to sql server 2008's store procedure but confuse that which way to send parameters mean we got 2 ways , parameters.add(parameter) and 2nd way, parameters.add("@parameter",sqldbtype.datatype).value= value so which one to use and y ?

Member Avatar for HunainHafeez
1
96
Member Avatar for sukritinfotech
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
151
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 Oxiegen
0
202
Member Avatar for yash_code

# This is the code that i have used for sending an E- mail: But the E-mail sending is getting failed every time plz give your valuable suggestions to solve this problem it's Urgent thanxx.....# MailMessage mail = new MailMessage(); mail.To.Add("yash.work19@gmail.com"); mail.From = new MailAddress("yshshkl@gmail.com"); mail.Subject = "hello"; mail.Body = …

Member Avatar for MARKAND911
0
231
Member Avatar for phadalemadhuri

http://www.srisanthi.9xitsolutions.com/SBPoints/Home.aspx as per above link 1. I want to upload plotting map... 2. then i have to assign plotno to it dynamically... 3. when user take his cursor to the particular plot i have to show the description of it which i saved in db 4. those plot get book …

0
114
Member Avatar for johnroach1985

Hi. I would like to add an asp.net-database web site example in the code snippets part. I was just wondering if I should post it in the C# section since it was written in C# however I must point out that I have used web.config. So it's not all C#.... …

Member Avatar for chezderon
0
231
Member Avatar for pmondal47

hi, i want to retrieve only the second field from system datetime..how can i do that??can anyone plz help me..thanks in advance

Member Avatar for pmondal47
0
206
Member Avatar for HunainHafeez

i have a signup form which needs user to submit his academic information also. academic info table in database is like this : tbl_acadinfo ![tblacademic](/attachments/small/3/tblacademic.jpg "align-left") now how would i fill this table via asp.net (as a part of signup form with title ACADEMIC INFO) ? bcz educationlevels are many …

Member Avatar for HunainHafeez
0
194
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
89
Member Avatar for Village Idiot

I am fairly new to asp.net, I am trying to connect to a sql (mysql prefferably) database, it must be using C#. I have been searching all of yesterday and today, I cant figure out how. Could someone help me here (if this has been asked, please point me to …

Member Avatar for cristine.y07
0
226
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
168
Member Avatar for jigarsangoi

![index3](/attachments/large/3/index3.jpg "index3") I want to create menu style given in image when i clicked menu it opens its content, but when i clicked to 2nd menu it closes previously opened menu and open 2nd menu. please see image so you get perfect idea what i want to say...if you have …

Member Avatar for JorgeM
0
225
Member Avatar for HunainHafeez
Member Avatar for programmer_

Is there any way by which I can listen to events fired by device (Speech mike, Kind of dicta phone) attached to client's computer in my ASP .net website? I need to listen to real time events of device (Speech mike, Kind of Dictaphone) and the frequency of event firing …

0
55
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
99
Member Avatar for bo0ga

What is meant by it being a "framework"? I'm reading and trying to learn ASP.NET and basically what I'm seeing is that you either use C# or VB.NET as the programming language for web development. But where is the ASP.NET aspect coming in? Is it just the name of the …

Member Avatar for urtrivedi
0
240
Member Avatar for maxpaine69

Hi all, What is the best to autenticate with out using the standar roles from VStudio.

Member Avatar for maxpaine69
0
159
Member Avatar for ketan0202

im doing my college project in cloud computing. how can i implement cloud (using asp.net) where users can upload and download files .

Member Avatar for pritaeas
0
166
Member Avatar for kamilacbe

Hi folks, I have encountered a new problem in my development environment , this might be a very simple part to be configured but no clue so looking for suggestion from you people , So my questions is I use ASP.net and C# recently i encountered that all my design …

Member Avatar for JorgeM
0
273
Member Avatar for GFX010

In My Web.sitemap I have the following: <siteMapNode url="~/Groups/ViewGroups.aspx" urlRoute="groups/{PostId}/{PostTitle}" /> </siteMapNode> In my MasterPage I have implemented the ItemDataBound event to try and set the title of each page that implements the master page dynamically but for some reason the title is not being set. protected void SiteMapPath1_ItemDataBound(object sender, …

Member Avatar for GFX010
0
238
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
159
Member Avatar for xiiopao

anyone here knows how to delete or hide an array element in asp permanently or until the application? im currently developing an application wherein once an array element matches the typed text in the textbox it should be removed from the list. what my code does is it deletes the …

0
114
Member Avatar for GFX010

Is it possible to create a custom Pager for the GridView control of ASP.NET that looks liek this? http://i47.tinypic.com/2925ssj.png If so, can anyone give me some ideas or some starting code into how to create it? Thank you.

Member Avatar for nakor77
0
51
Member Avatar for CriticalError

so I got two probelms with asp.net routing, I got these these routing values in my _AppStart RouteTable.Routes.MapWebPageRoute("{rcPageName}", "~/Default.cshtml", new { rcPageName = "default"}); RouteTable.Routes.MapWebPageRoute("Tutorials/PHP/{rcPageName}", "~/Default.cshtml", new { rcPageName = "PHPTutorial"}); RouteTable.Routes.MapWebPageRoute("Tutorials/VB/{rcPageName}", "~/Default.cshtml", new { rcPageName = "VBTutorial" }); RouteTable.Routes.MapWebPageRoute("Tutorials/CSharp/{rcPageName}", "~/Default.cshtml", new { rcPageName = "C-SharpTutorial" }); RouteTable.Routes.MapWebPageRoute("Tutorials/HTML/{rcPageName}", "~/Default.cshtml", new …

0
128
Member Avatar for varoluscu_prens

Hi There; I have a ASPX file and a code-behind cs file. I try to connect to a postgresql, perfom some database issue, and disconnect from it finally. To name a few, I print all records of database to the html file, add some new records. All these operations are …

Member Avatar for nakor77
0
303
Member Avatar for divyaselvaraj

now im doing project in asp.net by using visual studio 2008. im having some doubt in connectivity by usiny sql.So can anyone suggest some links to help me

Member Avatar for omar isaid
0
143
Member Avatar for hollystyles

The aim of this tutorial is to save burgeoning self taught developers some of the early pitfalls that lurk on the road to programming enlightenment. It will attempt to do this by distilling the last 50 years of software engineering philosophy into a relatively short single tutorial, applying the concepts …

Member Avatar for buck1107
2
4K

The End.