Forum: ASP.NET 19 Hours Ago |
| Replies: 0 Views: 72 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 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 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 Are the columns Total and grades created through template? |
Forum: ASP.NET 24 Days Ago |
| Replies: 5 Views: 326 Please close the thread by marking it as solved |
Forum: ASP.NET 24 Days Ago |
| Replies: 4 Views: 371 try this
Button1.Attributes.Add("onclick", "javascript:alert('Are you sure');"); |
Forum: ASP.NET 24 Days Ago |
| Replies: 5 Views: 326 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 for pop up in asp.net
%>
<SCRIPT LANGUAGE="Javascript">
alert("<% = strMessageToShow %>")
</SCRIPT>
<% |
Forum: ASP.NET 25 Days Ago |
| Replies: 2 Views: 341 nice article for beginners
http://www.w3schools.com/webservices/default.asp |
Forum: ASP.NET 25 Days Ago |
| Replies: 7 Views: 85,615 check out
http://stackoverflow.com/questions/3713/call-asp-net-function-from-javascript |
Forum: ASP.NET 25 Days Ago |
| Replies: 5 Views: 313 Have you specified
DropDownList1.DataTextField = "";
DropDownList1.DataValueField=""; |
Forum: ASP.NET 25 Days Ago |
| Replies: 3 Views: 401 |
Forum: MySQL 33 Days Ago |
| Replies: 1 Views: 429 |
Forum: ASP.NET Oct 13th, 2009 |
| Replies: 2 Views: 239 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 you can use item template. |
Forum: MySQL Oct 11th, 2009 |
| Replies: 1 Views: 394 Can you elaborate a little more? not too clear |
Forum: MySQL Oct 7th, 2009 |
| Replies: 1 Views: 429 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 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 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 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 |
Forum: ASP.NET Sep 29th, 2009 |
| Replies: 1 Views: 825 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 Can you elaborate your problem as to exactly what you are trying to do |
Forum: ASP.NET Sep 29th, 2009 |
| Replies: 4 Views: 288 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 |
Forum: MySQL Sep 18th, 2009 |
| Replies: 5 Views: 432 i had solved it using PwdEncrypt() and PwdCmpare() |
Forum: MySQL Sep 17th, 2009 |
| Replies: 5 Views: 432 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 How to encrypt and decrypt an existing column ? |
Forum: ASP.NET Aug 28th, 2009 |
| Replies: 5 Views: 352 u need to bind the below properties
DropDownLanguages.DataTextField =
DropDownLanguages.DataValueField = |
Forum: ASP.NET Aug 28th, 2009 |
| Replies: 14 Views: 1,263 did u try debugging the code? |
Forum: ASP.NET Aug 27th, 2009 |
| Replies: 4 Views: 218 mark the thread as solved if you have received your answer |
Forum: ASP.NET Aug 27th, 2009 |
| Replies: 14 Views: 1,263 |
Forum: ASP.NET Aug 24th, 2009 |
| Replies: 14 Views: 559 is the intellisense showing the two text boxes? |
Forum: ASP.NET Aug 24th, 2009 |
| Replies: 3 Views: 260 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 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 http://www.codeproject.com/KB/HTML/topten.aspx
i hope it helps |
Forum: ASP.NET Jul 21st, 2009 |
| Replies: 6 Views: 492 transfer the session contents to an array and then populate the gridview from array |
Forum: ASP.NET Jul 21st, 2009 |
| Replies: 3 Views: 260 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 |
Forum: ASP.NET Jun 22nd, 2009 |
| Replies: 12 Views: 1,352 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); |