16,016,795 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 2011999 (Top 140 by date)
2011999
24-Jul-23 9:36am
View
i am used "On Error Resume Next" when i got this error of Object Required. but not show error, after that code is not executed.
2011999
21-Apr-23 7:57am
View
Excel 2010 is Working but Excel 2007 not Working. how do work with Excel 2007
2011999
23-Nov-22 4:46am
View
I am used these version of files used. but not show any errors
2011999
6-Mar-18 20:50pm
View
Numeric Values
all values are numeric
no decimal points
I got Exception
i Debug the code.i got Exception {"Object reference not set to an instance of an object."}
2011999
22-Jun-14 14:28pm
View
add code in to the controllers
2011999
15-Jun-14 4:51am
View
i was write c drive in code but same problem i am facing
2011999
6-Jun-14 5:26am
View
i made above changes. but not shown SQL Management Studio ICON
2011999
30-Oct-12 0:36am
View
ALTER PROCEDURE [dbo].[sp_displaydata]
(
@UserId int
)
AS
SELECT
UserName,
Password,
Country,
Email
FROM RegistrationTable
WHERE
UserId = @UserId
Procedure or function 'sp_UserDetails' expects parameter '@UserId', which was not supplied."
List<class1> IService1.display()
{
List<class1> Classlist = new List<class1>();
Class1 objclass = null;
SqlDataReader reader = null;
SqlConnection con = new SqlConnection("conn");
con.Open();
SqlCommand cmd = new SqlCommand("sp_displaydata", con);
{
cmd.CommandType = CommandType.StoredProcedure;
reader = cmd.ExecuteReader();
while (reader.Read())
{
objclass = new Class1();
objclass.UserId = Convert.ToString(reader["UserId"]);
objclass.UserName = Convert.ToString(reader["UserName"]);
objclass.Password = Convert.ToString(reader["Password"]);
objclass.Country = Convert.ToString(reader["Country"]);
objclass.Email = Convert.ToString(reader["Email"]);
Classlist.Add(objclass);
}
reader.Close();
return Classlist;
}
}
2011999
26-Oct-12 5:26am
View
are you missing a using directive or an assembly referebce
2011999
21-Oct-12 1:57am
View
Deleted
with out using find replace
2011999
22-Aug-12 6:46am
View
i need code for the .CS file
insert is working fine today date; update is not working.
2011999
13-Aug-12 11:01am
View
not in .net tab System.Web.Helpers
2011999
13-Aug-12 10:54am
View
debug in application
2011999
9-Aug-12 0:31am
View
i was all ready try it
2011999
9-Aug-12 0:22am
View
Error 1 A constant value is expected
2011999
9-Aug-12 0:12am
View
Error 3 The name 'txt4' does not exist in the current context, txt2,txt0
2011999
8-Aug-12 23:54pm
View
Error 1 A switch expression or case label must be a bool, char, string, integral, enum, or corresponding nullable type
2011999
8-Aug-12 21:57pm
View
txtFirst is hear i get the run time textbox id's
2011999
7-Aug-12 8:57am
View
tb1.AutoPostBack = true; i set true but not fired
2011999
7-Aug-12 0:59am
View
Compiler Error Message: CS1002: ; expected
Source Error:
Line 172: #line default
Line 173: #line hidden
Line 174: @__w.Write("\');\r\n var txt1 = document.getElementById(\'");
Line 175:
2011999
6-Aug-12 8:54am
View
.ascx file
2011999
6-Aug-12 8:44am
View
error CS1002: ; expected
2011999
6-Aug-12 8:22am
View
not working
2011999
6-Aug-12 8:22am
View
not working
2011999
31-Jul-12 0:14am
View
Msg 102, Level 15, State 1, Procedure ETIPSAVE_SP, Line 20
Incorrect syntax near '@@Identity'.
2011999
30-Jul-12 8:42am
View
where to change it
2011999
30-Jul-12 8:37am
View
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[ETIPSAVE_SP]
(
@taxitemid int ,
@empid int,
@amount int ,
@Etid int OUTPUT
)
AS
INSERT INTO Employee_Tax_item_Payroll
(
tax_item_id,
emp_id,
amount
)
VALUES
(
@taxitemid,
@empid ,
@amount
)
SELECT
@etid = @@Identity
2011999
30-Jul-12 8:21am
View
in my database table single parameter assign multiple values
2011999
30-Jul-12 8:20am
View
add the table in value21,value22 row wise
2011999
27-Jul-12 6:08am
View
Object reference not set to an instance of an object.
2011999
27-Jul-12 4:08am
View
sc.Add(txtCollection.Text);
2011999
24-Jul-12 8:02am
View
Deleted
foreach (string item in valueslist)
{
TableRow tr = new TableRow();
TableCell tc = new TableCell();
Label lb = new Label();
TextBox tb1 = new TextBox();
tb1.ID = "txtBox1" + i.ToString();
lb.Text = item;
string ids = string.Format("lb{0}", i);
lb.ID = ids;
tc.Controls.Add(lb);
tr.Controls.Add(tc);
table.Controls.Add(tr);
tc.Controls.Add(tb1);
i++;
}
textboxes i need second row
2011999
24-Jul-12 6:50am
View
here all three values display one row i need three values in three rows
2011999
24-Jul-12 4:24am
View
string valu1 = Convert.ToString(ds.Tables[0].Rows[0]["name"]);
string valu2 = Convert.ToString(ds.Tables[0].Rows[1]["name"]);
string valu3 = Convert.ToString(ds.Tables[0].Rows[2]["name"]);
valueslist.Add(valu1);
valueslist.Add(valu2);
valueslist.Add(valu3);
foreach (string item in valueslist)
{
cell = new TableCell();
Label lbl = new Label();
lbl.Text = item + i.ToString();
cell.Controls.Add(lbl);
}
only last value taken lable i need three values
2011999
18-Jul-12 11:46am
View
THANK U VERY MUCH.
2011999
17-Jul-12 5:19am
View
first method not working
2011999
13-Jul-12 9:07am
View
Failed to convert parameter value from a String to a Boolean. i got this error
2011999
13-Jul-12 7:10am
View
string
2011999
13-Jul-12 6:19am
View
System.FormatException: String was not recognized as a valid Boolean. Error
2011999
13-Jul-12 5:13am
View
not working
2011999
12-Jul-12 9:45am
View
Deleted
int uid = TaxItemMasterPayrollDB.AddItem("aaa", "bas", true, false, 1, "pac", "PCM", false, time, time); how to pass textbox values
2011999
12-Jul-12 9:11am
View
Deleted
Object reference not set to an instance of an object.
i got this error, show the textbox value null
2011999
12-Jul-12 9:06am
View
Deleted
for (int i = 0; i < 10; i++)
{
TextBox tb = (TextBox)form1.FindControl(("txtBox1" + i.ToString()));
string value = tb.Text; //Here you'll get your value of each textbox.
}
this code is write button click
2011999
10-Jul-12 12:34pm
View
i was try in my database table fields 10 columns, using for loop i generate 10 textboxes but i did't add text box values into database.
2011999
10-Jul-12 11:37am
View
please give me example
2011999
10-Jul-12 8:19am
View
based on clent id data store in database (Enter text in textboxes)
2011999
10-Jul-12 7:18am
View
how to write get id for javascript
2011999
4-Jul-12 7:25am
View
lables Text
2011999
28-Jun-12 6:26am
View
if (empCode == exdb.Emp_Id.ToString())
2011999
28-Jun-12 4:47am
View
initialized
2011999
7-Jun-12 21:23pm
View
where to write this in line code? in web.config file . in web.config not accepting this code. pleas give code for brefly
2011999
7-Jun-12 21:14pm
View
not working
2011999
6-Jun-12 0:56am
View
I changed target Frame work 4.0
but same problem.
2011999
6-Jun-12 0:10am
View
Version 5.1 IIS
2011999
1-Jun-12 2:32am
View
same error display Incorrect syntax near the keyword 'from'.
2011999
1-Jun-12 1:52am
View
Incorrect syntax near the keyword 'from'.
2011999
31-May-12 12:27pm
View
Not Working
2011999
30-May-12 21:40pm
View
we develop a application. this application host in internet. presently working on intranet. this application developed in asp.net using csharp.
2011999
30-May-12 21:39pm
View
not display any error
2011999
30-May-12 6:02am
View
Deleted
<add name="TaxSavingInvestmentsEntities" connectionstring="metadata=res://*/TaxSavingsDB.csdl|res://*/TaxSavingsDB.ssdl|res://*/TaxSavingsDB.msl;provider=System.Data.SqlClient;provider connection string="providerName=System.Data.SqlClient connectionString= Data Source=s0001\SQLEXPRESS;Initial Catalog=TaxSavingInvestments;Integrated Security=true;">
<add name="TaxSavingInvestmentsConnectionString" providername="System.Data.SqlClient" connectionstring="Data Source=sooo1\SQLEXPRESS;Initial Catalog=TaxSavingInvestments;Integrated Security=true;">
2011999
17-May-12 7:34am
View
only three tables id get it but remaining data is not get it
2011999
15-May-12 6:11am
View
yes
2011999
15-May-12 2:53am
View
Msg 102, Level 15, State 1, Procedure prcLoginv, Line 14
Incorrect syntax near '1'.
2011999
14-May-12 13:43pm
View
not working above code
2011999
14-May-12 7:26am
View
Empty date field (how to submit the empty date field)i got error convertion problem.
2011999
14-May-12 6:43am
View
if (txtDate.Text.ToString() == "")
txtDate.Text. = "0";
is it not converted to '0'
2011999
11-May-12 5:28am
View
yes
2011999
8-May-12 13:50pm
View
hear databases are differnet. we are not loss the data A Table data or B Table data.
2011999
10-Apr-12 2:38am
View
i got error in Common
2011999
21-Mar-12 2:50am
View
i need above shift and remove functionality in jquery
1.If submit button is clicked add item to first div with checkboxes.
2If move button is clicked go through all checkboxes in the first div if any checkbox is in checked condition move that item to second div.
3.If remove button is clicked go through all checkboxes in the second div if any checkbox is in checked condition remove that that item in the second div
2011999
21-Mar-12 0:32am
View
thank u for send solution. when i am click the shift button after that move the check id items. and click the remove button remove the check id's.
2011999
20-Mar-12 0:24am
View
!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>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>jQuery content selection from list.</title>
<link href="test.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<div class="stack">
<div class="form_top"> </div>
<div class="float_break"></div>
<div class="form">
<br />
<div class="formbox">
All Users
<br />
<div id="all_users">
<div id="user1" userid="1" class="innertxt">
<img src="images.jpg" width="75" height="75">
Test User 01
<ul>
<li>User ID: 1</li>
<li>Email: user1@nodomain.com</li>
<li style="padding-top:5px;"><input type="checkbox" id="select1" value="1" class="selectit" /><label for="select1"> Select it.</label></li>
</ul>
</div>
<div id="user2" userid="2" class="innertxt">
<img src="images.jpg" width="75" height="75">
Test User 02
<ul>
<li>User ID: 2</li>
<li>Email: user2@nodomain.com</li>
<li style="padding-top:5px;"><input type="checkbox" id="select2" value="2" class="selectit" /><label for="select2"> Select it.</label></li>
</ul>
</div>
<div id="user3" userid="3" class="innertxt">
<img src="images.jpg" width="75" height="75">
Test User 03
<ul>
<li>User ID: 3</li>
<li>Email: user3@nodomain.com</li>
<li style="padding-top:5px;"><input type="checkbox" id="select3" value="3" class="selectit" /><label for="select3"> Select it.</label></li>
</ul>
</div>
<div id="user4" userid="4" class="innertxt">
<img src="images.jpg" width="75" height="75">
Test User 04
<ul>
<li>User ID: 4</li>
<li>Email: user4@nodomain.com</li>
<li style="padding-top:5px;"><input type="checkbox" id="select4" value="4" class="selectit" /><label for="select4"> Select it.</label></li>
</ul>
</div>
<div id="user5" userid="5" class="innertxt">
<img src="images.jpg" width="75" height="75">
Test User 05
<ul>
<li>User ID: 5</li>
<li>Email: user5@nodomain.com</li>
<li style="padding-top:5px;"><input type="checkbox" id="select5" value="5" class="selectit" /><label for="select5"> Select it.</label></li>
</ul>
</div>
<div id="user6" userid="6" class="innertxt">
<img src="images.jpg" width="75" height="75">
Test User 06
<ul>
<li>User ID: 6</li>
<li>Email: user6@nodomain.com</li>
<li style="padding-top:5px;"><input type="checkbox" id="select6" value="6" class="selectit" /><label for="select6"> Select it.</label></li>
</ul>
</div>
<div id="user7" userid="7" class="innertxt">
<img src="images.jpg" width="
2011999
19-Mar-12 21:33pm
View
how to shift checked items another div (jquery)
2011999
19-Mar-12 21:30pm
View
Deleted
checked items how to shift div
2011999
19-Mar-12 11:49am
View
one textbox,submit button,div1, shift button, div2 remove button
enter text into textbox next click on Submit button now input text display in Div1. now selected check box now click on shftbutton these selected check box contents display in div2.next whenever click on clear clear content in div2. pleas give me code(it means functionality)
2011999
19-Mar-12 11:27am
View
plese run this code on your machine
2011999
6-Mar-12 2:45am
View
my problem is solved
2011999
5-Mar-12 5:34am
View
not working
2011999
5-Mar-12 5:28am
View
Deleted
table Schema
CREATE TABLE ATT_LVE
(
LVE_ID Integer NOT NULL,
LVE_EMP_ID Integer NOT NULL,
LVE_TYP_ID Integer NOT NULL,
LVE_REASON Varchar(200) NOT NULL,
LVE_DESC Varchar(200),
LVE_BGN Date NOT NULL,
LVE_END Date NOT NULL,
LVE_BGNAT Smallint NOT NULL,
LVE_ENDAT Smallint NOT NULL,
LVE_BGNAPRD Date,
LVE_ENDAPRD Date,
LVE_BGNAPRDAT Smallint,
LVE_ENDAPRDAT Smallint,
LVE_STATUS Smallint NOT NULL,
LVE_USR_ID Integer,
LVE_APPLIEDON Timestamp NOT NULL,
LVE_APPROVEDON Timestamp,
LVE_RGR_ID Integer,
LVE_DURATION Numeric(7,1),
LVE_DOC Blob sub_type 0,
LVE_DOCNAME Varchar(100),
LVE_DOCTYPE Varchar(50),
CONSTRAINT PK_ATT_LVE_LVE_ID PRIMARY KEY (LVE_ID)
);
ALTER TABLE ATT_LVE ADD CONSTRAINT FK_ATT_LVE_ATT_RGR
FOREIGN KEY (LVE_RGR_ID) REFERENCES ATT_RGR (RGR_ID);
ALTER TABLE ATT_LVE ADD CONSTRAINT FK_ATT_LVE_ATT_TYP
FOREIGN KEY (LVE_TYP_ID) REFERENCES ATT_TYP (TYP_ID);
ALTER TABLE ATT_LVE ADD CONSTRAINT FK_ATT_LVE_EMP_EMP
FOREIGN KEY (LVE_EMP_ID) REFERENCES EMP_EMP (EMP_ID) ON DELETE CASCADE;
ALTER TABLE ATT_LVE ADD CONSTRAINT FK_ATT_LVE_ITA_USR
FOREIGN KEY (LVE_USR_ID) REFERENCES ITA_USR (USR_ID);
GRANT DELETE, INSERT, REFERENCES, SELECT, UPDATE
ON ATT_LVE TO SYSDBA WITH GRANT OPTION;
2011999
5-Mar-12 5:22am
View
Deleted
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: FirebirdSql.Data.Common.IscException: violation of PRIMARY or UNIQUE KEY constraint "PK_ATT_LVE_LVE_ID" on table "ATT_LVE"
2011999
5-Mar-12 5:17am
View
above posted
2011999
5-Mar-12 5:06am
View
not working
2011999
5-Mar-12 4:34am
View
yes
2011999
3-Mar-12 8:35am
View
how to resolve it
2011999
3-Mar-12 8:34am
View
Error 1 'FirebirdSql.Data.FirebirdClient.FbConnection' does not contain a definition for 'ExecuteReader' and no extension method 'ExecuteReader' accepting a first argument of type 'FirebirdSql.Data.FirebirdClient.FbConnection' could be found (are you missing a using directive or an assembly reference?) E:\Documents and Settings\Administrator\My Documents\Visual Studio 2010\WebSites\Subbu\SelectEdit\DBdata2\EmpLeave.aspx.cs 25 49 E:\...\DBdata2\
2011999
3-Mar-12 5:13am
View
not using sqlData adapter
2011999
3-Mar-12 5:13am
View
hear i have firebird i am using Fbdataadapter
2011999
3-Mar-12 5:05am
View
sda = new SqlDataAdapter(SQLCommandText, ConnectionString);
Compiler Error Message: CS0103: The name 'sda' does not exist in the current context
2011999
3-Mar-12 3:25am
View
again same Error
2011999
25-Feb-12 1:37am
View
thank u
Command(s) completed successfully.
2011999
20-Feb-12 7:10am
View
thank u for your support
2011999
12-Feb-12 8:48am
View
Thank u my problem is solved
2011999
10-Feb-12 11:51am
View
databse connection through controlpanel--->admin-toos> hear my connection successfully connected to databse. after that double click on payroll software exe database connection failed error.
2011999
10-Feb-12 8:49am
View
Database is connected. but not open application.
2011999
8-Feb-12 2:36am
View
Error converting data type varchar to numeric.
i got this error
2011999
30-Jan-12 6:45am
View
thank u my problem is solved
2011999
10-Jan-12 23:54pm
View
not working
2011999
10-Jan-12 11:27am
View
gridview.currentpageindex = e.newpageindex;
no intelegence
2011999
10-Jan-12 7:26am
View
e.NewPage No intelegence not working
2011999
2-Dec-11 0:44am
View
Con't find table 0(zero)
2011999
1-Dec-11 8:11am
View
i used template fields
2011999
1-Dec-11 7:50am
View
in button event not taken rowindex
2011999
1-Dec-11 1:15am
View
Same Error Message display
2011999
30-Nov-11 12:46pm
View
Deleted
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
GridView _gridView = (GridView)sender;
switch (e.CommandName)
{
case ("SingleClick"):
int _rowIndex = int.Parse(e.CommandArgument.ToString());
int _columnIndex = int.Parse(Request.Form["__EVENTARGUMENT"]);
_gridView.SelectedIndex = _rowIndex;
_gridView.DataSource = _sampleData;
_gridView.DataBind();
this.Message.Text += "Single clicked GridView row at index " + _rowIndex.ToString()
+ " on column index " + _columnIndex + "<br />";
Control _displayControl = _gridView.Rows[_rowIndex].Cells[_columnIndex].Controls[1];
_displayControl.Visible = false;
Control _editControl = _gridView.Rows[_rowIndex].Cells[_columnIndex].Controls[3];
_editControl.Visible = true;
_gridView.Rows[_rowIndex].Cells[_columnIndex].Attributes.Clear();
ScriptManager.RegisterStartupScript(this, GetType(), "SetFocus",
"document.getElementById('" + _editControl.ClientID + "').focus();", true);
if (_editControl is DropDownList && _displayControl is Label)
{
((DropDownList)_editControl).SelectedValue = ((Label)_displayControl).Text;
}
// If the edit control is a textbox then select the text
if (_editControl is TextBox)
{
((TextBox)_editControl).Attributes.Add("onfocus", "this.select()");
}
// If the edit control is a checkbox set the
// Checked value to the value of the display control
if (_editControl is CheckBox && _displayControl is Label)
{
((CheckBox)_editControl).Checked = bool.Parse(((Label)_displayControl).Text);
}
break;
}
}
2011999
30-Nov-11 0:21am
View
if possible send me sample code.
2. Assign the current rows value into a data row or some other variable
2011999
30-Nov-11 0:20am
View
in my grid five columns all data retrieve from database . this retrieve data only two columns edited only in grid. these process write the code in outside update button only. not inside gridupdate.
2011999
29-Nov-11 23:00pm
View
not taken Gridviewrow Value
2011999
29-Nov-11 22:56pm
View
is Gridviewrows
2011999
29-Nov-11 4:43am
View
not solved my problem still same Error dispaly
2011999
29-Nov-11 4:14am
View
not taken values form gridview textbox
2011999
29-Nov-11 2:57am
View
Text Box is edit mode
2011999
29-Nov-11 2:45am
View
not working above code
2011999
29-Nov-11 2:40am
View
Compiler Error Message: CS0103: The name 'IsInEditMode' does not exist in the current context
Source Error:
Line 22: <asp:TemplateField HeaderText="Comments">
Line 23: <itemtemplate>
Line 24: <asp:Label ID="lblComments" Visible='<%# !(bool) IsInEditMode %>' runat="server" Text='<%# Bind("Comments") %>'>
Line 25: <asp:TextBox ID="txtComments" Visible='<%# IsInEditMode %>' runat="server">
Line 26:
i got this error
2011999
28-Nov-11 8:09am
View
Please correct this code
2011999
28-Nov-11 8:09am
View
what next what i will do
2011999
28-Nov-11 8:06am
View
SqlException was Unhandle by user code
Incorrect syntax near 'No'
2011999
27-Nov-11 5:16am
View
my proble is solved
2011999
25-Nov-11 11:44am
View
not working for this code
2011999
25-Nov-11 11:31am
View
this code also inside gridbutton i need outside the gridview button
2011999
23-Nov-11 7:35am
View
Exact my requirement is whenever update a row in grid view. update data. but button is taken outside the grid view. not inside gridview
2011999
23-Nov-11 5:25am
View
in grid view default edit update is taken. but but don't want to default edit update change. whenever store data in grid view simultaneously update the database also. hole grid view one update button whenever change in grid view after that click update button update the data in gridview
2011999
23-Nov-11 4:08am
View
YOUR GAY
con.Open();
YOUR GAY
con.Open();
YOUR GAY
con.Open();
i did't understand where it is write this code. i am trying write this code in cs file. please calrify
YOUR GAY
con.Open();
2011999
21-Nov-11 10:20am
View
thank u for your replay solve my problem
2011999
21-Nov-11 6:48am
View
thank u for ur replay
2011999
20-Nov-11 5:14am
View
l.Text = dt.Rows[ctr].Item["question"];
indexoutofrangeException unhandle by user code plz correct the above code
2011999
20-Nov-11 4:45am
View
Deleted
Error 4 'System.Data.DataRow' does not contain a definition for 'Item' and no extension method 'Item' accepting a first argument of type 'System.Data.DataRow' could be found (are you missing a using directive or an assembly reference?) E:\Documents and Settings\Administrator\My Documents\Visual Studio 2010\WebSites\sraven\WebSite6\Default2.aspx.cs 38 31 E:\...\WebSite6\
2011999
20-Nov-11 2:31am
View
SqlServer Management Studio 2008 R2
2011999
19-Nov-11 13:03pm
View
Deleted
INDEXOUTOFRANGE EXCEPTION WAS UNHANDLE BY THE USER CODE
THERE IS NO ROW POSITION 0(ZERE)
2011999
19-Nov-11 3:20am
View
Deleted
Session["Answered"] = dt;
View v = this.View1;
Label l = default(Label);
l = (Label)v.FindControl("Label1");
l.Text = dt.Rows[ctr]["Serial"] + ",";
l = (Label)v.FindControl("Label2");
dt.Rows[ctr]["question"] = l.Text;
I got Error IndexOutofRange Exception and Unhandled by usercode in line
l.Text = dt.Rows[ctr]["Serial"] + ",";
there is no row position "0 (Zero)" l.Text = dt.Rows[ctr]["Serial"] + ",";
2011999
19-Nov-11 2:40am
View
thnk u login page is ok redirect the next page
2011999
19-Nov-11 2:31am
View
I got Error Message "SqlException was unhandled by user code" "Incorrect Syntax Error Near?" dr = cmd.ExecuteReader();
2011999
13-Nov-11 12:03pm
View
use of unsigned variable cid this is error message
2011999
13-Nov-11 11:49am
View
already mention int Id; i got this message
Description: An error occurred during the compilation of a resource required to ser
vice this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: CS0165: Use of unassigned local variable 'Id'
Source Error:
Line 140: //currentExtension = ((TextBox)r.FindControl("ExtensionTextBox")).Text;
Line 141:
Line 142: DataRow row = originalDataTable.Select(String.Format("Id = {0}", Id))[0];
Line 143:
Line 144: //if (!currentTitleOfCourtesy.Equals(row["TitleOfCourtesy"].ToString())) { return true; }
Source File: e:\Documents and Settings\Administrator\My Documents\Visual Studio 2010\WebSites\Subbu\SelectEdit\GridView\Edti3.aspx.cs Line: 142
2011999
10-Nov-11 2:05am
View
Error Message
2011999
10-Nov-11 2:05am
View
Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
2011999
5-Nov-11 13:58pm
View
if (Convert.ToInt32(x["Selected"]) + 1 == Convert.ToInt32(x["correct"])
this also not working
2011999
5-Nov-11 13:34pm
View
foreach (object drow_loopVariable in dt.Rows) {
drow = drow_loopVariable;
if (drow("Serial") == this.Label1.Text) {
drow("Selected") = this.RadioButtonList1.SelectedIndex;
break; // TODO: might not be correct. Was : Exit For
how to write in for each
2011999
5-Nov-11 13:27pm
View
Compiler Error Message: CS0029: Cannot implicitly convert type 'System.TimeSpan' to 'System.DateTime'
Source Error:
Line 73: try
Line 74: {
Line 75: mydate3 = mydate.Subtract(mydate2);
Line 76: this.Label5.Text = "Time Left: " + mydate3.ToShortTimeString();
Line 77: }
2011999
5-Nov-11 13:09pm
View
if (Convert.ToInt32(x["Selected"]) + 1 == Convert.ToInt32(x["correct"]))
not working this also
2011999
5-Nov-11 10:49am
View
mydate3 = mydate - mydate2;
not working this code
Show More