Forum: ASP.NET 6 Days Ago |
| Replies: 1 Views: 215 What do i need to install silverlight? i have Visual studio 2008.Also how can i check whether visual studio 2008 sp1 is installed or not? |
Forum: ASP.NET 10 Days Ago |
| Replies: 0 Views: 206 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: ASP.NET 32 Days Ago |
| Replies: 3 Views: 441 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 33 Days Ago |
| Replies: 2 Views: 382 Are the columns Total and grades created through template? |
Forum: ASP.NET 33 Days Ago |
| Replies: 5 Views: 357 Please close the thread by marking it as solved |
Forum: ASP.NET 33 Days Ago |
| Replies: 4 Views: 397 try this
Button1.Attributes.Add("onclick", "javascript:alert('Are you sure');"); |
Forum: ASP.NET 33 Days Ago |
| Replies: 5 Views: 357 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 34 Days Ago |
| Replies: 3 Views: 466 for pop up in asp.net
%>
<SCRIPT LANGUAGE="Javascript">
alert("<% = strMessageToShow %>")
</SCRIPT>
<% |
Forum: ASP.NET 34 Days Ago |
| Replies: 2 Views: 354 nice article for beginners
http://www.w3schools.com/webservices/default.asp |
Forum: ASP.NET 34 Days Ago |
| Replies: 7 Views: 86,467 check out
http://stackoverflow.com/questions/3713/call-asp-net-function-from-javascript |
Forum: ASP.NET 34 Days Ago |
| Replies: 5 Views: 340 Have you specified
DropDownList1.DataTextField = "";
DropDownList1.DataValueField=""; |
Forum: ASP.NET 34 Days Ago |
| Replies: 3 Views: 466 |
Forum: ASP.NET Oct 13th, 2009 |
| Replies: 2 Views: 254 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: 1,000 you can use item template. |
Forum: ASP.NET Oct 7th, 2009 |
| Replies: 9 Views: 441 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: 441 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: 432 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: 432 |
Forum: ASP.NET Sep 29th, 2009 |
| Replies: 1 Views: 958 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: 274 Can you elaborate your problem as to exactly what you are trying to do |
Forum: ASP.NET Sep 29th, 2009 |
| Replies: 4 Views: 295 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: ASP.NET Aug 28th, 2009 |
| Replies: 5 Views: 360 u need to bind the below properties
DropDownLanguages.DataTextField =
DropDownLanguages.DataValueField = |
Forum: ASP.NET Aug 28th, 2009 |
| Replies: 14 Views: 1,356 did u try debugging the code? |
Forum: ASP.NET Aug 27th, 2009 |
| Replies: 4 Views: 221 mark the thread as solved if you have received your answer |
Forum: ASP.NET Aug 27th, 2009 |
| Replies: 14 Views: 1,356 |
Forum: ASP.NET Aug 24th, 2009 |
| Replies: 14 Views: 569 is the intellisense showing the two text boxes? |
Forum: ASP.NET Aug 24th, 2009 |
| Replies: 3 Views: 265 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: 318 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: 414 http://www.codeproject.com/KB/HTML/topten.aspx
i hope it helps |
Forum: ASP.NET Jul 21st, 2009 |
| Replies: 6 Views: 501 transfer the session contents to an array and then populate the gridview from array |
Forum: ASP.NET Jul 21st, 2009 |
| Replies: 3 Views: 266 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: ASP.NET Jun 22nd, 2009 |
| Replies: 12 Views: 1,373 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); |
Forum: ASP.NET Jun 18th, 2009 |
| Replies: 12 Views: 1,373 try debugging the code.perhaps the empty values are passed in the query |
Forum: ASP.NET Jun 18th, 2009 |
| Replies: 11 Views: 1,352 why dont you add check boxes in the datagrid? for the rows whose checkboxes are checked, highlight the row |
Forum: ASP.NET Jun 18th, 2009 |
| Replies: 4 Views: 864 finally i have solved it. The solution is
xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async = false;
var path = document.location.href;
path =... |
Forum: ASP.NET Jun 15th, 2009 |
| Replies: 4 Views: 864 |
Forum: ASP.NET Jun 10th, 2009 |
| Replies: 4 Views: 864 though i have solved the problem of loading, what if i want to load an xml present in C:. how to give the path? |
Forum: ASP.NET Jun 10th, 2009 |
| Replies: 4 Views: 864 How to parse an xml from javascript from code beside page? i have tried
var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async = false;
xmlDoc.onreadystatechange =... |
Forum: ASP.NET Apr 13th, 2009 |
| Replies: 4 Views: 556 you can use cookies and set the expiry time as you want. |
Forum: ASP.NET Apr 13th, 2009 |
| Replies: 3 Views: 460 you can use cookies and apply validation for the event if cookies are set.whats the code? |