Search Results

Showing results 1 to 40 of 117
Search took 0.01 seconds.
Search: Posts Made By: campkev ; Forum: ASP.NET and child forums
Forum: ASP.NET Feb 17th, 2009
Replies: 4
Views: 382
Posted By campkev
Go to http://www.connectionstrings.com
It is your friend. Bookmark it.
Forum: ASP.NET Sep 10th, 2007
Replies: 15
Views: 68,678
Posted By campkev
I am no longer amazed by newbie posters who tell people that have consistently been on this (or any) forum for a long time helping people how to help people. Sometimes, the best way to help someone...
Forum: ASP.NET May 31st, 2007
Replies: 2
Views: 1,159
Posted By campkev
Forum: ASP.NET May 22nd, 2007
Replies: 2
Views: 776
Posted By campkev
yes
Forum: ASP.NET May 22nd, 2007
Replies: 10
Views: 17,380
Posted By campkev
this is a community help forum. We help you with your problem, we don't do everything for you. Tell us what you have tried and what problems your are having and we will help you solve them. We won't...
Forum: ASP.NET May 22nd, 2007
Replies: 2
Views: 3,979
Posted By campkev
of course it is opening in a new window, you are using window.open.

use
document.location = "page2.aspx?username=" + lstruser
Forum: ASP.NET May 9th, 2007
Replies: 6
Views: 3,077
Posted By campkev
why? Because it saves you a roundtrip and a server call, and is faster and more efficient.
Forum: ASP.NET May 7th, 2007
Replies: 6
Views: 3,077
Posted By campkev
hopefully, this will get you going in the right direction.

var tb = document.getElementById('TEXTBOXID');
var tbVal = '';
if(tb !=null)
tbVal = tb.value;
...
Forum: ASP.NET May 7th, 2007
Replies: 3
Views: 2,457
Posted By campkev
can you give us some sample data?
Forum: ASP.NET Mar 1st, 2007
Replies: 1
Views: 7,903
Posted By campkev
ok, figured out the problem. needed the following line in the aspx page. Evidently, this makes functions from the master accessible by the content page

<%@ MasterType...
Forum: ASP.NET Mar 1st, 2007
Replies: 1
Views: 7,903
Posted By campkev
ok,
I am new to master pages. I have created a public function called setMenu in the cs file.

I can call this function fine from about half of my pages, but when i try to call it from the other...
Forum: ASP.NET Feb 26th, 2007
Replies: 2
Views: 1,343
Posted By campkev
well, are you using c# or vb.net, what kind of database are you using, what fields are in the database, what textboxes, dropdowns etc are you getting information from to populate said fields, are you...
Forum: ASP.NET Feb 23rd, 2007
Replies: 2
Views: 1,014
Posted By campkev
fix your database query
Forum: ASP.NET Feb 15th, 2007
Replies: 3
Views: 1,758
Posted By campkev
i believe square brackets, not parentheses, should be used when referencing a column

l1.Text =Reader("Username");
should be
l1.Text =Reader["Username"];
Forum: ASP.NET Feb 5th, 2007
Replies: 4
Views: 6,329
Posted By campkev
?????
post your code
Forum: ASP.NET Feb 5th, 2007
Replies: 4
Views: 6,329
Posted By campkev
textBoxName.Text = DateTime.Now.Month.ToString()+"/1/"+ DateTime.Now.Year.ToString();
Forum: ASP.NET Feb 2nd, 2007
Replies: 6
Views: 4,667
Posted By campkev
do something that you now will cause an unhandled excpetion on one of your pages
Forum: ASP.NET Feb 1st, 2007
Replies: 6
Views: 4,667
Posted By campkev
let me give you some sample code. You don't need to change web.config at all

you want to put this code in your global.asax code behind. This is for C#.Net but you should be able to convert it to...
Forum: ASP.NET Jan 31st, 2007
Replies: 9
Views: 1,606
Posted By campkev
yes the site hosting the .net code needs the framework
Forum: ASP.NET Jan 26th, 2007
Replies: 1
Views: 7,831
Posted By campkev
System.Web.Mail.MailMessage mail = new System.Web.Mail.MailMessage();
mail.To = "whoyouwantmailtogoto@yoursite.com";
mail.From = "whoyouwantmailtoshowfrom@yoursite.com";
mail.Subject =...
Forum: ASP.NET Jan 23rd, 2007
Replies: 1
Views: 1,210
Posted By campkev
figured out what is causing it, though still not sure why. Had the app pool set to recycle the process if it got bigger than 1024M of virtual memory. It was recycling whenever it got to about 60M...
Forum: ASP.NET Jan 23rd, 2007
Replies: 1
Views: 1,210
Posted By campkev
Hey, I have a problem. My asp.net application just ends after about one minute and I have no idea why. Running server2003 x64. Any ideas
Forum: ASP.NET Jan 12th, 2007
Replies: 2
Views: 2,647
Posted By campkev
a) wrong forum
b) what website?
Forum: ASP.NET Jan 12th, 2007
Replies: 3
Views: 4,479
Posted By campkev
that would not be a good way to do it. Opening yourself up to a SQL-injection attack
Forum: ASP.NET Dec 22nd, 2006
Replies: 3
Views: 4,479
Posted By campkev
well, what is the value of city_name.Text when you run the query
Forum: ASP.NET Nov 28th, 2006
Replies: 2
Views: 6,835
Posted By campkev
i would use javascript for that.
Forum: ASP.NET Nov 16th, 2006
Replies: 4
Views: 13,942
Posted By campkev
looks to me like his server isn't set up to run .net and it is just returning the code
Forum: ASP.NET Oct 24th, 2006
Replies: 1
Views: 2,185
Posted By campkev
i think you want:
select count(term), term from TableName group by term
Forum: ASP.NET Oct 24th, 2006
Replies: 2
Views: 1,869
Posted By campkev
do you want the changes to take place immediately? or after form is submitted?
Forum: ASP.NET Oct 24th, 2006
Replies: 3
Views: 22,406
Posted By campkev
it depends on how that column is setup in the database. Is it set up as an identity column?
Forum: ASP.NET Aug 23rd, 2006
Replies: 14
Views: 7,195
Posted By campkev
um this wouldn't work at all
Forum: ASP.NET Aug 8th, 2006
Replies: 1
Views: 1,034
Posted By campkev
sniff...sniff...I smell a homework question
Forum: ASP.NET Aug 1st, 2006
Replies: 15
Views: 68,678
Posted By campkev
Forum: ASP.NET Jul 8th, 2006
Replies: 9
Views: 5,603
Posted By campkev
also, if your control is inside another control (eg table) viewstate needs to be enabled for that too
Forum: ASP.NET Jul 5th, 2006
Replies: 1
Views: 5,000
Posted By campkev
i just posted an answer to a very similar post under the software development section under c#. Check that one out
Forum: ASP.NET Jun 30th, 2006
Replies: 14
Views: 7,195
Posted By campkev
well where are you going to store this variable? database, file?
Forum: ASP.NET Jun 30th, 2006
Replies: 14
Views: 7,195
Posted By campkev
I would instantiate an application variable in the application on start pulling the value from whereever it is saved

Increment it in session onstart

Save it back to whereever in application...
Forum: ASP.NET Jun 27th, 2006
Replies: 9
Views: 10,393
Posted By campkev
um, that line doesn't appear anywhere in the code you posted
Forum: ASP.NET Jun 27th, 2006
Replies: 2
Views: 2,161
Posted By campkev
this is very odd code, so let's start by cleaning it up a little

sql = "SELECT * FROM tblcsvdump"
set rs = connection.execute(sql)
records = rs.Fields.Count

dim heading(100)
dim pulled(100)...
Forum: ASP.NET Jun 26th, 2006
Replies: 2
Views: 2,516
Posted By campkev
I'm not familiar with ATLAS, but I have played around with AJAX. I actually created a solution to the "disabling the back button" problem using it, but it did not work with some of the lesser used...
Showing results 1 to 40 of 117

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC