I'm looking around for examples or suggestions of how to go about my problem.
I have three tables (work, engineers, parts) that are joined by a column wo_number.
When I do my query in sql:
select work.wo_number, engineer.name from work join engineers on work.wo_number = engineer.wo_number
It...
I am almost done with my project and I'm having trouble finding what is causing this problem.
I have on my form for this example a checkbox, two textbox's and a button. I was trying to implement a simple javascript function that if a user checks the check box it will fill the two textboxes with...
I have a simple formatDate function written in javascript as seen below.
<script language="javascript">
function formatDate(str, style) {
var dateVar = new Date(str);
var year = dateVar.getYear();
if(year<10)
year += 2000;
if(year<100)
year += 1900...
I am trying to refresh my memory with programming in ASP.NET. I have a simple select statement that I know returns records and this code was working but now it doesn't anymore and I can not figure out why?
con.Open();
AsaDataAdapter cmd = new AsaDataAdapter(sqlString.ToString(), con)...
I am finally gotten everything done with my data entry form except I am having one quirk that is giving me a hard time.
I have a drop down on the form with values lets just say city1, city2, city3 and when the user selects one of these values it populates a textbox with the value. I'm trying to...
I have two pages page1.aspx and page2.aspx. Page1 opens up page2 in a popup window. Page2 has a datagrid with a button column which is select. I have this in my selectedindexchanged:
DataGridItem dgi = dtgEQ.SelectedItem;
Response.Write(@"<script...
I am currently teaching myself how to program in C# and creating some ASP.NET pages for my department. I am currently trying to implement a way to populate two drop down list with data from my database. The two drop downs consist of buildings and floors. So here is what I did so far.
1) I...
Hello everyone,
I am at my wits end trying to figure this problem out. I have installed a web portal on one of my clients machine that volunteered to help with beta testing. After installing all the files and configuring all my reports work great except one. When I run this particular report...
Hello Everyone,
I was hoping the search feature was back up and running. I am trying to find a way to make the calendar control do a few more features that I'm sure everyone here has asked.
I'm wondering if there are any free calendar controls/datetimepickers preferably with c# source code...
Hello Everyone,
I need some assistance with my form validation. I have been given a project by my boss and not given a lot of time to finish it. The project I have been given is to have a form where the user can select a date range and some other filters to be passed to a crystal report...
I am now working on a Login Prompt form that has username/password already working. I need to add one more feature which is to list the System DSN's in a drop down listbox. We have several users that work with different project databases so I want to give them a way to switch between different...
First I apologize if this has been asked but at this time the search feature was under repair so I could not see if this is a repeat.
Anyways I'm trying to make a dynamic popup datagrid window where I pass my tablename, fieldnames and restrictions. I am doing this so I can just have one form to...
I know this is an easy fix but I'm not seeing what could be the problem. Anyways I am reading C# Web Applications with Visual Studio .NET. I read in one of the chapters you can make a base class file that you can format all your web pages the same like a template html. Well the example has a...
I know this is a simple question but its been driving me nuts. I figure I'll ask here since another pair of eyes will see what I'm missing.
I'm just learning asp.net using C# and trying different things out to see how it works. I'm now trying to pass session variables between two pages.
On...
I apologize if there is already a similiar post but could not find it. I have been successful in figuring out how to pass parameters, login information and other things from this forum.
My problem I have now is I'm trying to port all my crystal reports to be accessible by the web as a web...
I have what I believe is a tricky question. I am downloading data from one database system into mine every hour. I notice in the information from the database I'm downloading enters the engineer's comments every trip they make to a site.
So when we run reports from my database system it shows...
Hello all,
I have everything working except I'm getting one error that I can not figure how to get around.
The problem is I have a report that has 5 subreports. The main report has one parameter. The links to the subreports is to a different field than the main report parameter I'm trying to...
Hello All,
First I want to apologize if this has been asked but my searches didn't return exactly what I needed. I have a simple form with two date values and two text values. I have the code for my form:
<form name=frmEntry Action=runreport.asp .... >
The submit button executes the...
I am currently working on an idea and would just like any suggestions or sites to read information on how to accomplish this.
I currently have an outlook form that people in my office fills out to inform me they have an error with a software or a functionality suggestion, etc. I want to take...
I have two structures
struct StudentRec {
char name[25]; // Name of student
float average; // Student's average
};
struct Roster {
StudentRec student[100];
int numStudent;
};
I have this function that I'm trying to sort the names in order:
void sort(Roster& r)
{
for...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.