Search Results

Showing results 1 to 40 of 55
Search took 0.02 seconds.
Search: Posts Made By: carobee ; Forum: ASP.NET and child forums
Forum: ASP.NET 6 Days Ago
Replies: 1
Views: 215
Posted By carobee
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
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: ASP.NET 32 Days Ago
Replies: 3
Views: 441
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 33 Days Ago
Replies: 2
Views: 382
Posted By carobee
Are the columns Total and grades created through template?
Forum: ASP.NET 33 Days Ago
Replies: 5
Views: 357
Posted By carobee
Please close the thread by marking it as solved
Forum: ASP.NET 33 Days Ago
Replies: 4
Views: 397
Posted By carobee
try this

Button1.Attributes.Add("onclick", "javascript:alert('Are you sure');");
Forum: ASP.NET 33 Days Ago
Replies: 5
Views: 357
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 34 Days Ago
Replies: 3
Views: 466
Posted By carobee
for pop up in asp.net

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

DropDownList1.DataTextField = "";
DropDownList1.DataValueField="";
Forum: ASP.NET 34 Days Ago
Replies: 3
Views: 466
Posted By carobee
Can you elaborate?
Forum: ASP.NET Oct 13th, 2009
Replies: 2
Views: 254
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: 1,000
Posted By carobee
you can use item template.
Forum: ASP.NET Oct 7th, 2009
Replies: 9
Views: 441
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: 441
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: 432
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: 432
Posted By carobee
Can you post your code
Forum: ASP.NET Sep 29th, 2009
Replies: 1
Views: 958
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: 274
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: 295
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: ASP.NET Aug 28th, 2009
Replies: 5
Views: 360
Posted By carobee
u need to bind the below properties


DropDownLanguages.DataTextField =
DropDownLanguages.DataValueField =
Forum: ASP.NET Aug 28th, 2009
Replies: 14
Views: 1,356
Posted By carobee
did u try debugging the code?
Forum: ASP.NET Aug 27th, 2009
Replies: 4
Views: 221
Posted By carobee
mark the thread as solved if you have received your answer
Forum: ASP.NET Aug 27th, 2009
Replies: 14
Views: 1,356
Posted By carobee
Forum: ASP.NET Aug 24th, 2009
Replies: 14
Views: 569
Posted By carobee
is the intellisense showing the two text boxes?
Forum: ASP.NET Aug 24th, 2009
Replies: 3
Views: 265
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: 318
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: 414
Posted By carobee
http://www.codeproject.com/KB/HTML/topten.aspx
i hope it helps
Forum: ASP.NET Jul 21st, 2009
Replies: 6
Views: 501
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: 266
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: ASP.NET Jun 22nd, 2009
Replies: 12
Views: 1,373
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);
Forum: ASP.NET Jun 18th, 2009
Replies: 12
Views: 1,373
Posted By carobee
try debugging the code.perhaps the empty values are passed in the query
Forum: ASP.NET Jun 18th, 2009
Replies: 11
Views: 1,352
Posted By carobee
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
Posted By carobee
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
Posted By carobee
Please can anyone help?
Forum: ASP.NET Jun 10th, 2009
Replies: 4
Views: 864
Posted By carobee
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
Posted By carobee
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
Posted By carobee
you can use cookies and set the expiry time as you want.
Forum: ASP.NET Apr 13th, 2009
Replies: 3
Views: 460
Posted By carobee
you can use cookies and apply validation for the event if cookies are set.whats the code?
Showing results 1 to 40 of 55

 


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

©2003 - 2009 DaniWeb® LLC