| Subject | Date Asked | Expert |
|
| Can we create Repeater on DataGrid | 2/7/2005 | Srini Nagarajan |
Q: can we create Repeater on DataGrid? how? If we can then just send me sample code. Tushar Dabhi A: Here is the sample script. Change the Database call and other stuff based on your requirement ...
|
| Form Gateway | 2/5/2005 | kevin maloney |
Q: I have an interesting little problem that may require some out of the box thinking; your help would ... A: You're on the right track conceptually. The idea, to recap your thoughts, is 1) phone connects to a ...
|
| Form Gateway | 2/5/2005 | Ashvin Johnson |
Q: I have an interesting little problem that may require some out of the box thinking; your help would ... A: I like your Project very much. You have not Mentioned in which platform you are working. I ...
|
| adding additional column for asp output | 1/28/2005 | Ashvin Johnson |
Q: database is oracle table cmr description is phone varchar2 cmrdate date meter_reading number through ... A: Could u please explain me the question. See U are asking Question and you have to be very clear what ...
|
| Create a Login page with validation and creation of New user | 1/26/2005 | Ujjwal |
Q: Here is my1.) I designed a new user registration page with fields : Name, Password,Re-type ... A: You need to follow a logic, which i m giving below: 1) U put the URL in the browser and it should ...
|
| XML ASP Parser | 1/25/2005 | kevin maloney |
Q: Perhaps, i have not described the scenario in details. Here it is : I have a list of POST ... A: Typically the way you would process a request like this would not be to set the "action" parameter ...
|
| XML ASP Parser | 1/25/2005 | Srini Nagarajan |
Q: i have tried but it does not work for me. Perhaps, i have not described the scenario in details. ... A: Give a try with XML HTTPrequest. Here is the sample code var objHTTP = new ...
|
| XML ASP Parser | 1/25/2005 | kevin maloney |
Q: How are you doing? I am new to XML parser and never would i ever thought of encountering it. Here ... A: I can't really tell you how to treat the data because you didn't tell me enough about what it looks ...
|
| XML ASP Parser | 1/25/2005 | Srini Nagarajan |
Q: How are you doing? I am new to XML parser and never would i ever thought of encountering it. Here ... A: Here is the sample to read the xml dynamically in ASP <% Option Explicit Response.Buffer = True ...
|
| Database Connectivity | 1/19/2005 | Srini Nagarajan |
Q: How can I connect to a database(SQL Server) using .net. A: Here is the simple script <%@ Import Namespace="System.Data" %> <%@ Import ...
|
| user login and session | 1/17/2005 | Ujjwal |
Q: i'd like to create asp page using login for some user that some link coudn't access until user ... A: You got it right that u will be using Session variable. At the page where you are validating login ...
|
| Contact form validation | 1/15/2005 | Srini Nagarajan |
Q: Iam very new to ASP. Here is my1.) I have a contact.asp file which has a form with fields , Name, ... A: Here is the code make the necessary changes. The first thing you need to do is create a ...
|
| Auto update Date & Dynamic text format | 1/12/2005 | Ujjwal |
Q: Wow, thanks for the quick response! For question #1, is that code something you can help me with? ... A: I can give you the logic as I cant give the code, coz I dont know what code you have written, ...
|
| UPDATE | 1/8/2005 | Ujjwal |
Q: I am trying to update a record on an access database. This script is supposed to change the users ... A: Can u do one thing for me to understand the error at a particular line. Before each line try ...
|
| Where statement | 1/5/2005 | Ashvin Johnson |
Q: I'm gretting this error on my where statement Microsoft OLE DB Provider for ODBC Drivers error ... A: what is departed, if it NUmeric value then put it as imysql = "SELECT lastname as lastname, ...
|
| ASP.NET VB Common code include | 1/5/2005 | Srini Nagarajan |
Q: I have just completed my first ASP.NET project (adding a search engine to the Canterbury Cathedral ... A: Here are two links, complete code available. you can take this and do some Layout change it will be ...
|
| div height | 1/5/2005 | kevin maloney |
Q: i want div height in percentage but it doesnt work. i set body height in percentage(as reffered in ... A: I can very easily set the height of a div as a percentage. Here's an example: <html> <body > <div ...
|
| how we get the requested values... | 1/3/2005 | Ujjwal |
Q: how we get the requested values of a form at same asp page i want the values i requeted on other ... A: Basically what you need to do is Populate the value for each item, say for example, you are using 5 ...
|
| session array | 12/20/2004 | kevin maloney |
Q: Simple code <% dim acart(50) acart(1)="2" Session("cart")=acart acart=Session("cart")'line 4 %> ... A: Once you explicitly dimension a variable as an array, you can no longer assign it as a unit. If you ...
|
| call ATL COM from ASP | 12/17/2004 | Ujjwal |
Q: Actually I'm incharge of ASP part, to deal with DLL (written in VC++). I checked online, it seems ... A: If the Dll is COM compliant, ie, implements the iDispatch interface then it can be read by a COM ...
|
| Calling a function within an ASP Page | 12/14/2004 | Srini Nagarajan |
Q: .. I am calling a function or sub if u may call it from within the same page. it works fine until i ... A: Sorry for the delay... here is the simple example how to use this fsSQL = "SELECT * FROM Table " ...
|
| printer driver malfunction | 12/11/2004 | Srini Nagarajan |
Q: I have been using a Citizen CBM 1000 Parallel interface Point of sale printer ( seriel no (not ... A: 1. Regarding the reports. Do you have the reports pages? If the software don't have that kind of ...
|
| validation field | 12/7/2004 | kevin maloney |
Q: i want to know if i want to do validation for other field, can i just simply add the field in the ... A: Yes, you can add any validation code you want. For example, assume in addition to the existing test, ...
|
| ASP.Net Focus | 12/6/2004 | kevin maloney |
Q: How do I automatically set the focus on a asp.net page to a text box when the page loads? Also how ... A: Part 1, set focus to a textbox when the page loads. There is nothing special about doing this in ...
|
| ASP.Net Focus | 12/6/2004 | Srini Nagarajan |
Q: How do I automatically set the focus on a asp.net page to a text box when the page loads? Also how ... A: you can use javascript at the end of the page and setfocus if you do the codebehind on vb.net use ...
|
| ASP.net Focus | 12/6/2004 | Ujjwal |
Q: How do I automatically set the focus on a asp.net page to a text box when the page loads? Also how ... A: IN C#, for Set focus try this: 1) In the Form.Load event handler, write: this.ActiveControl = ...
|
| Relation between ASP and Index Server? | 12/3/2004 | Ujjwal |
Q: We just updated our server from NT to 2000 Server. We developed an ASP/VBScript based administrator ... A: Certainly ASP codes work in Conjunction with the INDEX SERVER catalog's. You can check for the ...
|
| calculation | 12/2/2004 | Srini Nagarajan |
Q: I'm Mas Aida. Here I need help on some calculation. Let me briefly explain my problem. I want my ... A: Looks like you need to write a sql script to update the books quantity to reducue here is the sql ...
|
| ASP called Oracle Stored Procedure | 11/29/2004 | Srini Nagarajan |
Q: I am trying to call a stored procedure using ASP and I got the following error at the execute: ... A: Here is the simple steps to use oracle store proc in asp You can execute stored procedures which ...
|
| ASP called Oracle Stored Procedure | 11/29/2004 | kevin maloney |
Q: I am trying to call a stored procedure using ASP and I got the following error at the execute: ... A: That error would typically occur if the current oracle user doesn't have the authority to execute ...
|
| authentication | 11/29/2004 | Srini Nagarajan |
Q: i got this code and i want to use it in my system for check the username, password and domain or the ... A: Set dataConn = Server.CreateObject("ADODB.Connection") dataConn.Open "Driver={Microsoft Access ...
|
| The RPC Server is unavailable | 11/28/2004 | kevin maloney |
Q: i have this problem when i'm trying to display the asp pages. The error message is "The RPC Server ... A: Unfortunately the "RPC Server is unavailable" message is one of those misleading messages Microsoft ...
|
| Saving image in SQL Server using VB6 | 11/27/2004 | Srini Nagarajan |
Q: I hope you are doing well. I need to save the image file in SQL server using VB6 and also need to ... A: saving the image you can use the following code... Private Sub cmdClear_Click() Image1.Picture ...
|
| validation field | 11/26/2004 | kevin maloney |
Q: i'm doing my final year project now and must present the project in this coming week. my problem ... A: First, remember that with modern browsers using a popup is not a good idea, because many people have ...
|
| validation field | 11/26/2004 | kevin maloney |
Q: i'm doing my final year project now and must present the project in this coming week. my problem ... A: Oh, well then the question is, is the input _allowed_ to contain decimal points. In your original ...
|
| validation field | 11/26/2004 | kevin maloney |
Q: i'm doing my final year project now and must present the project in this coming week. my problem ... A: First, remember that the VBScript in classic ASP is a non-typed language. So the simple answer to ...
|
| ASP (field datatype) | 11/26/2004 | Srini Nagarajan |
Q: i'm doing my final year project now and must present the project in this coming week. my problem ... A: Why don't you validate the Price on the client side instead of Server side.. Here is the code for ...
|
| Disable or remove toolbars in IE | 11/26/2004 | kevin maloney |
Q: I would like to know how i can disable or remove the standard toolbars from Internet Explorer in a ... A: The only way to remove IE toolbars (from asp.net or any other server-side development environment) ...
|
| Disabling Stanard tool bars in IE | 11/26/2004 | Srini Nagarajan |
Q: I would like to know how i can disable or remove the standard toolbars from Internet Explorer in a ... A: using a javascript you can do it. Something like this <INPUT type="button" value="New Window!" ...
|
| Running vb.net problem | 11/23/2004 | Srini Nagarajan |
Q: I had followed ur instruction exactly. But still I am getting the same error. What is the reason? ... A: Looks like in IIS the .NET framework version 1.1 is not registered properly... Can you uninstall ...
|