Click here to Skip to main content
Page 1 of 4
Page Size: 10 · 25 · 50


Author filtered by: richcb [x]
Answer 13 May 2013   license: CPOL
Here is a site that should get you started:Clickety click clack[^]
Answer 13 May 2013   license: CPOL
Here is an example of a for loop creating check boxes dynamically based on a row count:for(int i = 0; i
Forum Message 13 May 2013  
Another live streamer: http://www.codeproject.com/script/Membership/View.aspx?mid=10049515[
Answer 13 May 2013   license: CPOL
This is an example of what you might do:Dim buttonList As New List(Of Button)()buttonList.Add("add your buttons from the page here or if you create them dynamically do it for each one");For i As Integer = 0 To buttonList.Capacity Then Dim btn As New Button ...
Answer 13 May 2013   license: CPOL
Hey Kwesi, the "Logical" in FoxPro is a "bit" in SQL.See here[^]
Answer 10 May 2013   license: CPOL
You can simpley add:if(!Page.IsPostBack){}around the code you want to run when the button is clicked.
Answer 10 May 2013   license: CPOL
Here is the other connection string you will want to use for .xlsx files:"Provider=Microsoft.Ace.Oledb.12.0;Data Source=" + filepath + ";Extended Properties=" + "\"" + "Excel 12.0;" + "\"";You already have the connection string for .xls files. Just check the extension as I said above...
Answer 10 May 2013   license: CPOL
Look at this:Send Mail / Contact Form using ASP.NET and C#[^]
Answer 9 May 2013   license: CPOL
Try adding parameters like this: SqlParameter dataParameter = new SqlParameter(); dataParameter.Value = txtEmpNo.Text.Trim(); dataParameter.ParameterName = "@EmpNo"; SqlParameter dataParameter2 = new SqlParameter(); ...
Answer 9 May 2013   license: CPOL
Here is a simple way you can do this. Enable "Selecting" for your gridview and then template that field. When editing the template, you can replace the link button with a checkbox and use the CheckChanged event handler to delete the row selected from the database.Here is what the deleting...
Answer 8 May 2013   license: CPOL
Use a RegularExpression validator and use this: ^[0-9]{1,7}$ as your regular expression. Then you can change the error message to whatever you want.
Answer 8 May 2013   license: CPOL
You need to either escape the "\" like this:"\\"oradd an "@" at the front of the string. You have it done with several other string file paths on your page.
Answer 8 May 2013   license: CPOL
You need to download the AJAX toolkit and add it as a reference to your project.AJAX ToolKit[^]
Answer 7 May 2013   license: CPOL
I would just alter the select statement and alias all the columns into one with concatenation.It would look something like this:Select [column1 + " " + column2 + " " + column3] as columnHeader From Table_Name
Forum Message 7 May 2013  
Thank you kindly.
Forum Message 6 May 2013  
That's no joke.
Forum Message 6 May 2013  
Here is a user who is not behaving appropriately. Every response is abusive and some profanity. <a href="http://www.codeproject.com/script/Membership/View.aspx?mid=9962686">http://w
Forum Message 6 May 2013  
Here is a user who is not behaving appropriately. Every response is abusive and some profanity. http://www.codeproject.c
Forum Message 2 May 2013  
That is funny.
Forum Message 2 May 2013  
Streaming live what-nots: http://www.codeproject.com/script/Membership/View.aspx?mid=10025085[
Answer 2 May 2013   license: CPOL
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Data.SqlClient;using System.Configuration;using System.Data;public partial class _Default : System.Web.UI.Page{ ...
Answer 1 May 2013   license: CPOL
Here is the code you need to add/alter in order for it to work:using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Data.SqlClient;using System.Configuration;using System.Data;...
Forum Message 1 May 2013  
Not sure if this is considered abuse, but it seems like it to me. The user only posts answers to promote a certain product.
Forum Message 1 May 2013  
This user is posting live stream spam: http://www.codeproject.com/script/Membership/View.aspx?mid=10022637[
Forum Message 1 May 2013  
That makes it all worth it then.
Answer 1 May 2013   license: CPOL
It is stemming from "string[] seats = """. You never instantiated a string array. It should look like this:string[] seats = new string[1];Then you can assign it the value you have.
Forum Message 1 May 2013  
Ok, got ya. I know there are only a few users with points even remotely in the same ball park as you and wasn't sure about the abilities at that level.
Forum Message 1 May 2013  
Thank you. Does one gain the abilities to "nuke" accounts as the reputation points become more numerous?
Live stream spam by richcb
Forum Message 1 May 2013  
This user is posting live streaming adds in the Q&A forum. http://www.codeproject.com/script/Membership/View.aspx?mid=1
Answer 1 May 2013   license: CPOL
You are using a try catch wrong, see this.[^] Label4 will only get displayed if your application throws an exception. Review the article to understand what a try catch is.
C#
Answer 23 Apr 2013   license: CPOL
Try this next time![^]
Answer 23 Apr 2013   license: CPOL
Here is an article that might help y ou out:How to find Href on HTML page[^]
C#
Re: Spamming by richcb
Forum Message 23 Apr 2013  
That seems to be the consensus, thank you.
Re: Spamming by richcb
Forum Message 23 Apr 2013  
Thank you.
Re: Spamming by richcb
Forum Message 19 Apr 2013  
Fair enough, thank you for your input.
Re: Spamming by richcb
Forum Message 19 Apr 2013  
Ok, thank you for that perspective.
Spamming by richcb
Forum Message 19 Apr 2013  
Please provide opinions. Would you consider something spam if a user had an account for 6 years before their first post, and when they did post, it was a link to a product created by them in a solu
Answer 19 Apr 2013   license: CPOL
You can't. ASP is a server side scripting language. ASP.Net is a platform.ASP[^]ASP.Net[^]
ASP
Answer 19 Apr 2013   license: CPOL
The box-shadow only works for IE9 and above.See here[^]
CSS
Forum Message 18 Apr 2013  
This user is spamming with a product for sale. http://www.codeproject.com/script/Membership/View.aspx?mid=9997543[
Answer 17 Apr 2013   license: CPOL
This is only an example of how to increment and not to be taken as a solution to the thread. Code is more readable here.public static void Kill(){ int killIncrementer = 0; killIncrementer++;}That just increments an int eachtime a kill happens. You will want to store that...
My vote of 5 by richcb
Forum Message 17 Apr 2013  
Nice work, had never even thought of something like that.
Answer 12 Apr 2013   license: CPOL
Try this next time:Click me![^]
Answer 12 Apr 2013   license: CPOL
This should give you what you need:Click me![^]and this:Click me too![^]
C#
Answer 11 Apr 2013   license: CPOL
Here is an example.[^]You can build your email with data from a form, but you cannot send an email via HTML.
Answer 11 Apr 2013   license: CPOL
Click me![^]
Spammer by richcb
Forum Message 11 Apr 2013  
User is spamming: http://www.codeproject.com/script/Membership/View.aspx?mid=8247458[
Spammer by richcb
Forum Message 10 Apr 2013  
Streaming spam: http://www.codeproject.com/script/Membership/View.aspx?mid=9979168[

Page 1 of 4
1 2 3 4


Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid