Search Results

Showing results 1 to 40 of 202
Search took 0.02 seconds.
Search: Posts Made By: carobee
Forum: ASP.NET 19 Hours Ago
Replies: 0
Views: 72
Posted By carobee
hi

i want to make an UI that appears like a chessboard and user can enter text in any of the boxes.later on i should be able to calculate the postion where user has entered the entry.
which...
Forum: MS SQL 2 Days Ago
Replies: 1
Views: 113
Posted By carobee
Hi,

I have created a temporary @table and while inserting ,i am using dynamic sql.But this is not getting executed and throws an error that
"EXECUTE cannot be used as a source when inserting...
Forum: ASP.NET 23 Days Ago
Replies: 3
Views: 396
Posted By carobee
on button click write this piece of code

CheckBox chk;
ArrayList CheckedItems = new ArrayList();
foreach (GridViewRow row in GrdViewTableName.Rows) {
//GridViewTableName is my gridview name
...
Forum: ASP.NET 24 Days Ago
Replies: 2
Views: 333
Posted By carobee
Are the columns Total and grades created through template?
Forum: ASP.NET 24 Days Ago
Replies: 5
Views: 326
Posted By carobee
Please close the thread by marking it as solved
Forum: ASP.NET 24 Days Ago
Replies: 4
Views: 371
Posted By carobee
try this

Button1.Attributes.Add("onclick", "javascript:alert('Are you sure');");
Forum: ASP.NET 24 Days Ago
Replies: 5
Views: 326
Posted By carobee
Try this

string str = TextBox1.Text.Trim();
for (int i = 0; i < str.Length; i++) {
if (!str[i].Equals(Convert.ToChar(32))) {
newList.Add(str[i]);
...
Forum: ASP.NET 25 Days Ago
Replies: 3
Views: 443
Posted By carobee
for pop up in asp.net

%>
<SCRIPT LANGUAGE="Javascript">
alert("<% = strMessageToShow %>")
</SCRIPT>
<%
Forum: ASP.NET 25 Days Ago
Replies: 2
Views: 341
Posted By carobee
nice article for beginners
http://www.w3schools.com/webservices/default.asp
Forum: ASP.NET 25 Days Ago
Replies: 7
Views: 85,615
Posted By carobee
check out
http://stackoverflow.com/questions/3713/call-asp-net-function-from-javascript
Forum: ASP.NET 25 Days Ago
Replies: 5
Views: 313
Posted By carobee
Have you specified

DropDownList1.DataTextField = "";
DropDownList1.DataValueField="";
Forum: ASP.NET 25 Days Ago
Replies: 3
Views: 401
Posted By carobee
Can you elaborate?
Forum: MySQL 33 Days Ago
Replies: 1
Views: 429
Posted By carobee
still waitng for help
Forum: ASP.NET Oct 13th, 2009
Replies: 2
Views: 239
Posted By carobee
how did u make it look into buttons.If you have used template,then you can defined the even in the defination of item template
Forum: ASP.NET Oct 13th, 2009
Replies: 10
Views: 910
Posted By carobee
you can use item template.
Forum: MySQL Oct 11th, 2009
Replies: 1
Views: 394
Posted By carobee
Can you elaborate a little more? not too clear
Forum: MySQL Oct 7th, 2009
Replies: 1
Views: 429
Posted By carobee
While creating a DTS package i want to include a Stored Procedure with input parameters? Can any help in this.
Forum: ASP.NET Oct 7th, 2009
Replies: 9
Views: 433
Posted By carobee
i hope your requirement was to translate the date captured in string datetime.

P.S Mark the thread as solved if your query is resolved
Forum: ASP.NET Oct 7th, 2009
Replies: 9
Views: 433
Posted By carobee
DateTime date = Convert.ToDateTime(txtdate.Text);
if(date>DateTime.Now)
txtEnteredDate.Text = "Selected date is greater";



Hope this helps
Forum: ASP.NET Oct 6th, 2009
Replies: 3
Views: 422
Posted By carobee
On ASPX


<!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...
Forum: ASP.NET Oct 5th, 2009
Replies: 3
Views: 422
Posted By carobee
Can you post your code
Forum: ASP.NET Sep 29th, 2009
Replies: 1
Views: 825
Posted By carobee
Loop through the values and you can use

int num=Convert.ToInt32(Convert.ToDecimal(value));


once the number is extracted fill the gridview with this value

Convert.ToString(num);
Forum: ASP.NET Sep 29th, 2009
Replies: 3
Views: 268
Posted By carobee
Can you elaborate your problem as to exactly what you are trying to do
Forum: ASP.NET Sep 29th, 2009
Replies: 4
Views: 288
Posted By carobee
Below is the code to attach text boxes values to datagrid.Initially i have made the gridview visible=false.Include in your submit button click event


DataTable dt = new DataTable();
...
Forum: MySQL Sep 18th, 2009
Replies: 5
Views: 432
Posted By carobee
Forum: MySQL Sep 18th, 2009
Replies: 5
Views: 432
Posted By carobee
i had solved it using PwdEncrypt() and PwdCmpare()
Forum: MySQL Sep 17th, 2009
Replies: 5
Views: 432
Posted By carobee
i want encryption of column in Sql.i have tried using symmetric key,but is there something simple.With HashBytes () we can encrypt but not decrypt
Forum: MySQL Sep 16th, 2009
Replies: 5
Views: 432
Posted By carobee
How to encrypt and decrypt an existing column ?
Forum: ASP.NET Aug 28th, 2009
Replies: 5
Views: 352
Posted By carobee
u need to bind the below properties


DropDownLanguages.DataTextField =
DropDownLanguages.DataValueField =
Forum: ASP.NET Aug 28th, 2009
Replies: 14
Views: 1,263
Posted By carobee
did u try debugging the code?
Forum: ASP.NET Aug 27th, 2009
Replies: 4
Views: 218
Posted By carobee
mark the thread as solved if you have received your answer
Forum: ASP.NET Aug 27th, 2009
Replies: 14
Views: 1,263
Posted By carobee
Forum: ASP.NET Aug 24th, 2009
Replies: 14
Views: 559
Posted By carobee
is the intellisense showing the two text boxes?
Forum: ASP.NET Aug 24th, 2009
Replies: 3
Views: 260
Posted By carobee
if id is your primary key then delete command would not let the identity to start from where you have left.you have to use 'Insert Identity On'
Forum: ASP.NET Aug 21st, 2009
Replies: 4
Views: 310
Posted By carobee
you can open an sql connection and then use "Insert" commands to add it to database
Forum: ASP.NET Jul 31st, 2009
Replies: 5
Views: 411
Posted By carobee
http://www.codeproject.com/KB/HTML/topten.aspx
i hope it helps
Forum: ASP.NET Jul 21st, 2009
Replies: 6
Views: 492
Posted By carobee
transfer the session contents to an array and then populate the gridview from array
Forum: ASP.NET Jul 21st, 2009
Replies: 3
Views: 260
Posted By carobee
Do you want to update a particular row or the entire rows of the gridview?Do you want to update on the click of any button ?
Forum: IT Professionals' Lounge Jul 6th, 2009
Replies: 5
Views: 793
Posted By carobee
Forum: ASP.NET Jun 22nd, 2009
Replies: 12
Views: 1,352
Posted By carobee
add a watch in the values at this point

SqlCommand cmd=new SqlCommand("Update Loc_mast Set Loc =('"+ txtrnme.Text+"') Where Loc =('"+ Droploc.SelectedItem.Text+"')",con1);
Showing results 1 to 40 of 202

 


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

©2003 - 2009 DaniWeb® LLC