15,997,856 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View C++ questions
View Javascript questions
View Visual Basic questions
View .NET questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Raghupathiraja (Top 132 by date)
Raghupathiraja
4-Dec-11 0:15am
View
can u give me an solution to know the concept of the code behind it....
have confusions only
Raghupathiraja
30-Nov-11 3:01am
View
hi friend...
i am not asking for creating object...
i want to send one information to a person...
for the security purpose i added fake object for that file...
sending to the person... to avoid the hacking or tracing... can u get it?
Raghupathiraja
30-Nov-11 1:35am
View
lucene means?
Raghupathiraja
29-Nov-11 9:03am
View
oh ok yar... have doubt so only asked... thank u
Raghupathiraja
29-Nov-11 8:41am
View
is sharpziplib needed?
Raghupathiraja
28-Nov-11 4:54am
View
i got the result friend... thanks...
Raghupathiraja
27-Nov-11 2:40am
View
yes i copied from c#
Raghupathiraja
27-Nov-11 2:39am
View
byte[] input = Encoding.Unicode.GetBytes(PlainText);
i got this error at encoding c
Raghupathiraja
27-Nov-11 0:51am
View
CS0103: The name 'InitializeComponent' does not exist in the current context
Raghupathiraja
23-Nov-11 1:20am
View
can u give idea to do this process...
me too lacking in encryption
Raghupathiraja
22-Nov-11 19:13pm
View
Deleted
can i give idea to do this process...
me too lacking in the encryption process
Raghupathiraja
18-Nov-11 1:02am
View
Deleted
i have searched...
and got the contents... i dont know how to learn in it...
Raghupathiraja
17-Nov-11 9:42am
View
There is already an open DataReader associated with this Command which must be closed first.
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 in the code.
Exception Details: System.InvalidOperationException: There is already an open DataReader associated with this Command which must be closed first.
Source Error:
Line 35: {
Line 36: SqlCommand cmd1 = new SqlCommand("update usertab set pass='" + TextBox2.Text + "' where uname='" + lbuser.Text + "' ", con);
Line 37: cmd1.ExecuteNonQuery();
Line 38: Response.Write("<script>alert('Password Changed')</script>");
Line 39: }
i got this error
Raghupathiraja
17-Nov-11 9:40am
View
which query
Raghupathiraja
17-Nov-11 9:12am
View
wt haha!!!!
Raghupathiraja
17-Nov-11 9:09am
View
can u give an idea to do this process...
i want to change the user's password in my project?
can u help me?
Raghupathiraja
14-Nov-11 5:08am
View
yeah i got it...
selected row cells...
isn't it?
Raghupathiraja
14-Nov-11 4:54am
View
thanks...
but there is a code for read and write only....
i want to show the result of the grid in word...
how?
Raghupathiraja
13-Nov-11 12:53pm
View
thank u....
in Visual 2005 how ya?
Raghupathiraja
9-Nov-11 6:14am
View
protected void Button1_Click(object sender, EventArgs e)
{
System.Net.Mail.MailMessage msg = new System.Net.Mail.MailMessage(TextBox1.Text, TextBox2.Text, TextBox3.Text, TextBox4.Text);
System.Net.Mail.SmtpClient mysmtp = new SmtpClient("192.168.1.9");
try
{
mysmtp.Send(msg);
Label1.Text = "mail sent";
}
catch (Exception ex)
{
Label1.Text = ex.Message;
}
}
i used this also...
its showing failed mail sending
Raghupathiraja
9-Nov-11 5:59am
View
i am gets error in smpt server connection only...
Raghupathiraja
9-Nov-11 5:57am
View
this is i posted knew?
can u answer for it?
Raghupathiraja
9-Nov-11 5:53am
View
thank u i got it ya
Raghupathiraja
9-Nov-11 5:41am
View
i am going to validate the values of textboxs
Raghupathiraja
9-Nov-11 5:13am
View
in my code where i want to give this line...
dont mistaken...
Raghupathiraja
9-Nov-11 5:03am
View
thanks ya...
Raghupathiraja
9-Nov-11 4:54am
View
"The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.0 Must issue a STARTTLS command first. lt8sm11626059pbb.0 "
got this error when i click the button
Raghupathiraja
9-Nov-11 4:51am
View
System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage();
message.To.Add("training@bellatrix.in");
message.Subject = "This is the Subject line";
message.From = new System.Net.Mail.MailAddress("raghupathirajamca@gmail.com");
message.Body = "hi";
System.Net.Mail.SmtpClient smtp = new System.Net.Mail.SmtpClient("smtp.gmail.com");
smtp.Send(message);
i used this code error got in last line
Raghupathiraja
9-Nov-11 4:50am
View
System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage();
message.To.Add("training@bellatrix.in");
message.Subject = "This is the Subject line";
message.From = new System.Net.Mail.MailAddress("raghupathirajamca@gmail.com");
message.Body = "hi";
System.Net.Mail.SmtpClient smtp = new System.Net.Mail.SmtpClient("smtp.gmail.com");
smtp.Send(message);
i used this code...
it showing error at last line ya
Raghupathiraja
9-Nov-11 4:34am
View
is it enough ah?
thank u
Raghupathiraja
9-Nov-11 4:26am
View
i dont know exactly what to do?
can u say ?
Raghupathiraja
9-Nov-11 4:19am
View
how to know the host name?
how to find it?
can u say yar?
Raghupathiraja
8-Nov-11 0:34am
View
yes i am doing for my final year project by myself...
Raghupathiraja
7-Nov-11 5:53am
View
i have used this code..
but its auto matically generates new key and not matching...
Raghupathiraja
5-Nov-11 10:15am
View
<asp:TemplateField HeaderText="View">
<itemtemplate>
<asp:LinkButton id="view" runat="server" Text="View" CommandName="View" CommandArgument='<%#Eval("path") %>' >
i given like this ya
Raghupathiraja
5-Nov-11 10:13am
View
i got it ya... sorry...
but i can't read my file... its autoposting only...
can't see it...
Raghupathiraja
5-Nov-11 9:56am
View
how to replace ya... dont know so only asking...
plz help
Raghupathiraja
5-Nov-11 8:51am
View
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="fid"
DataSourceID="SqlDataSource1" Height="133px" Width="381px">
<columns>
<asp:BoundField DataField="fid" HeaderText="File ID" InsertVisible="False" ReadOnly="True"
SortExpression="fid" />
<asp:BoundField DataField="ftitle" HeaderText="Title" SortExpression="ftitle" />
<asp:BoundField DataField="oname" HeaderText="Owner" SortExpression="oname" />
<asp:BoundField DataField="fname" HeaderText="File Name" SortExpression="fname" />
<asp:BoundField DataField="ext" HeaderText="Extension" SortExpression="ext" />
<asp:BoundField DataField="status" HeaderText="Status" SortExpression="status" />
<asp:CommandField HeaderText="View" SelectText="View" ShowSelectButton="True" />
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:ProofConnectionString %>"
SelectCommand="SELECT * FROM [filetab]">
this is my code...
how to link the path from database in
"<asp:CommandField HeaderText="View" SelectText="View" ShowSelectButton="True" />
" here?
Raghupathiraja
5-Nov-11 3:35am
View
thank u ya...
Raghupathiraja
5-Nov-11 3:35am
View
i got it friend... thanks ya...
Raghupathiraja
5-Nov-11 2:54am
View
s there i gets increments...
Raghupathiraja
5-Nov-11 2:49am
View
s i do it...
but i want show it in texbox at run time...
i coded like above... but it displaying id as 1 only...
not showing the current uid from the table....
help me friend....
Raghupathiraja
5-Nov-11 2:38am
View
i can't get this...
Raghupathiraja
5-Nov-11 2:25am
View
thank... when the control moves to next textbox... there itself i want to do this process...
Raghupathiraja
3-Nov-11 6:55am
View
how to get that installer file to install...
Raghupathiraja
3-Nov-11 6:48am
View
thank u....
there is no file like that in the folder...
now what i want to do, friend...
Raghupathiraja
3-Nov-11 1:36am
View
call the function in the submit button or what to do for it?
Raghupathiraja
2-Nov-11 14:05pm
View
thank u friend...
its really good...
Raghupathiraja
2-Nov-11 7:46am
View
THANKS ...
oh if i send the file path means it ill retrieve the contents ah...
thanks....
i have doubt that how to store in database
file name, size, type, path.... and all...
how to do this?
Raghupathiraja
2-Nov-11 7:32am
View
file details and file path...
when i click view button the file contents deplay in it?
Raghupathiraja
2-Nov-11 7:24am
View
how to store in database
Raghupathiraja
2-Nov-11 7:17am
View
i can't gets u friend...
can u say detaily?
Raghupathiraja
2-Nov-11 6:25am
View
thank u
Raghupathiraja
2-Nov-11 6:21am
View
thank u
Raghupathiraja
2-Nov-11 4:31am
View
can u help me to do this ?
Raghupathiraja
1-Nov-11 14:46pm
View
yeah i dont have any conditions...
i want to create random passwod and more than 6 letters...
database is Sql Server 2005...
i want to send that generated password to mail id....
how?
Raghupathiraja
30-Oct-11 1:43am
View
i am gets same prob with this code too friend...
i dont know whats the prob?
Raghupathiraja
29-Oct-11 8:23am
View
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Image ID="Image1" runat="server" ImageUrl="~/App_Data/images.jpg" />
<div>
</div>
</form>
</body>
</html>
Raghupathiraja
29-Oct-11 8:21am
View
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Image ID="Image1" runat="server" ImageUrl="~/App_Data/images.jpg" />
<div>
</div>
</form>
</body>
</html>
Raghupathiraja
29-Oct-11 8:21am
View
<asp:Image ID="Image1" runat="server" ImageUrl="~/App_Data/images.jpg" />
Raghupathiraja
29-Oct-11 8:19am
View
my code is:
<asp:Image ID="Image1" runat="server" ImageUrl="~/App_Data/images.jpg" />
Raghupathiraja
29-Oct-11 8:18am
View
this is the code i have used
<asp:Image ID="Image1" runat="server" ImageUrl="~/App_Data/images.jpg" />
Raghupathiraja
29-Oct-11 8:15am
View
i had stored images in APP_DATA folder and retrieving from the same folder only...
but i can't get the image at my run time...
Raghupathiraja
29-Oct-11 8:14am
View
s i have checked... i am given correct folder and path too
Raghupathiraja
29-Oct-11 7:35am
View
i am using ASP.NET
i want to extract the datas from two different datas from the common data of both tables....
Raghupathiraja
29-Oct-11 7:31am
View
i have problem in image...
at my run time the images are not showing... instead of it i got the symbol of no image...
what can i do for it?
Raghupathiraja
22-Oct-11 9:46am
View
i think thats for comparing two images...
i am asking that how to check the selected image with stored image in database...
is it possible?
Raghupathiraja
22-Oct-11 9:24am
View
thank you...
Raghupathiraja
21-Oct-11 8:35am
View
can u give any example for me...
i am gets error only
Raghupathiraja
21-Oct-11 8:34am
View
do u know ?
Raghupathiraja
21-Oct-11 8:34am
View
ok ya...
Raghupathiraja
21-Oct-11 6:58am
View
iframe means?
Raghupathiraja
21-Oct-11 6:58am
View
yes i am searched for frameset but it's showing error in asp.net...
so only asking?
Raghupathiraja
21-Oct-11 6:56am
View
do u have any idea to this video
http://www.youtube.com/watch?v=T_pTmAKAKsQ
Raghupathiraja
21-Oct-11 6:56am
View
thank u...
Raghupathiraja
21-Oct-11 5:48am
View
thank you...
Raghupathiraja
20-Oct-11 10:23am
View
Exploiting Dynamic Resource Allocation For Efficient Parallel Data Processing In The Cloud
any idea abt this ?
Raghupathiraja
20-Oct-11 10:22am
View
any idea for it?
Raghupathiraja
20-Oct-11 10:21am
View
thank you!!!
Raghupathiraja
20-Oct-11 10:20am
View
is datalist good one for it?
Raghupathiraja
20-Oct-11 10:15am
View
yeah thats right...
but i want to do it for a project result...
i have stored few web site in my database ...
when i search with the respective keyword it shows like google search...
do u got me?
Raghupathiraja
20-Oct-11 10:08am
View
yeah actually i am confused...
i want to do a search operation...
if i give the key word as java...
the searched result should be like as google's result...
Raghupathiraja
20-Oct-11 9:59am
View
i want to show the results like google's search result but from my database...
Raghupathiraja
20-Oct-11 9:37am
View
thank you
Raghupathiraja
20-Oct-11 9:37am
View
thanks machi
Raghupathiraja
20-Oct-11 8:55am
View
how to use it in web application in visual studio 2008
Raghupathiraja
19-Oct-11 6:05am
View
how to do in a ASP.net
Raghupathiraja
19-Oct-11 3:44am
View
means
Raghupathiraja
19-Oct-11 3:44am
View
i am asked an idea for it?
Raghupathiraja
19-Oct-11 3:02am
View
i have assigned to do the same project...
but i dont have any idea abt this....
so can u help me?
Raghupathiraja
22-Sep-11 5:51am
View
raghupathi.raja@gmail.com...
can u send it to me..
Raghupathiraja
22-Sep-11 3:00am
View
i am developing online examination project...
in that i want to display random questions and its choices...
but i want to show multiple questions in a single page....
can u give me any solution....
Raghupathiraja
21-Sep-11 3:52am
View
<asp:panel ID="Panel1" runat="server" BackImageUrl="Images/world.background[1].gif">
Raghupathiraja
21-Sep-11 3:47am
View
but it gives background color instead of image
Raghupathiraja
21-Sep-11 1:31am
View
my mail id is raghupathi.raja@gmail.com
Raghupathiraja
21-Sep-11 1:31am
View
my mail id is raghupathi.raja@gmail.com
Raghupathiraja
21-Sep-11 1:27am
View
are u there?
can u help me...
plz
Raghupathiraja
21-Sep-11 1:19am
View
sorry yesterday too upset so went outside...
so only didn't reply
can u send me now plz
Raghupathiraja
21-Sep-11 1:17am
View
i am not joking...
i am in critical situation
Raghupathiraja
20-Sep-11 9:09am
View
k ya...
Raghupathiraja
20-Sep-11 9:09am
View
i got that validation(XHTML1.0 transitional):Element datalist is not supported
Raghupathiraja
20-Sep-11 9:02am
View
ok sql or access
Raghupathiraja
20-Sep-11 9:01am
View
how answering? nice ya... really you are great
Raghupathiraja
20-Sep-11 8:52am
View
i am using visual studio 2008... whats database ?
Raghupathiraja
20-Sep-11 8:52am
View
from you only i am going to learn...
Raghupathiraja
20-Sep-11 8:51am
View
sorry... it showing error creating datalist...
Raghupathiraja
20-Sep-11 8:42am
View
thanks a lot dear friend...
dont know what to say...
i never forget this help in my life...
Raghupathiraja
20-Sep-11 7:15am
View
whats happened friend?
Raghupathiraja
20-Sep-11 5:32am
View
thank u!!!
Raghupathiraja
20-Sep-11 5:16am
View
i did from that code only... error
Raghupathiraja
20-Sep-11 5:14am
View
i searched but can't get...
Raghupathiraja
20-Sep-11 5:14am
View
i am developing on line examination project...
i want to get questions and answer choices from data base... each page should contain 5 questions with 5 mins timer ok....
i want to do this...
from yesterday i am trying i can't get it...
so can u help to do this one...
Raghupathiraja
20-Sep-11 5:11am
View
i dont know what i want to do... so trying something to get output ok... sorry
Raghupathiraja
20-Sep-11 5:09am
View
i want to run a online examination project today... still having problem to do it...
dont know wt to do?
Raghupathiraja
20-Sep-11 5:08am
View
s error as Object reference not set to an instance of an object.
Raghupathiraja
20-Sep-11 3:08am
View
ennaku online examination project pannanum... help pannunga...
Raghupathiraja
20-Sep-11 3:08am
View
i got idea and done it...
thank u so much for ur's explanations...
keep in touch with me...
Raghupathiraja
20-Sep-11 1:18am
View
how to insert it using insertion operation
Raghupathiraja
20-Sep-11 1:14am
View
ama ...
neenga?
Raghupathiraja
20-Sep-11 1:02am
View
thank u!!!!!!!!!!!!!!!!!!!!
Raghupathiraja
20-Sep-11 0:57am
View
thank u...
i have one doubt how to store it in database...
how?
Raghupathiraja
19-Sep-11 10:45am
View
how to show the counting timer in the screen in decrease order
could u say?
Raghupathiraja
19-Sep-11 10:40am
View
thank u...
do u know tamil?
Raghupathiraja
19-Sep-11 9:17am
View
in table ok...
but how in label and choices
Raghupathiraja
19-Sep-11 9:10am
View
thank u...
how for ms access database...
bcz i haven't sql server ..
Raghupathiraja
19-Sep-11 8:24am
View
yeah i am waiting for u?
Raghupathiraja
19-Sep-11 8:21am
View
yeah
how?
can u say me wt to do?
Raghupathiraja
19-Sep-11 8:14am
View
my point is showing the question in label and showing the multiple choice to radiobutton ... how?
Raghupathiraja
19-Sep-11 8:13am
View
yeah good thanks...
Raghupathiraja
19-Sep-11 8:05am
View
if u know plz reply me
Raghupathiraja
19-Sep-11 8:03am
View
thanks...
i wanna know that how to get data for several labels
Raghupathiraja
19-Sep-11 7:56am
View
i want to create 5 questions in a page and get those questions and choices ffrom the data base... wt to for it?
Show More