Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
5
Posts with Upvotes
5
Upvoting Members
5
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~56.9K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Tags

35 Posted Topics

Member Avatar for vegaseat
Member Avatar for Reverend Jim
15
14K
Member Avatar for Duki
Member Avatar for debasisdas
Member Avatar for jimbennett57
Member Avatar for jimbennett57
0
712
Member Avatar for AndreRet
Member Avatar for neomatrix2

you are using ASP.NET AJAX UpdatePanel in your aspx page. Then Page.ClientScript.RegisterStartupScript will not work. We have to use ScriptManager.RegisterStartupScript.

Member Avatar for Dhaneshnm
0
279
Member Avatar for sanjanaa

I dont have much idea about "iTEXTSHARP library".But i can suggest one more mwthod so that you get more options to choose. Step 1:convert data set to xml We can use DataSet.GetXml() method for that. Convert that to string(like DataSet.GetXml() .toString()) step2: Write an xslt script to convert the above …

Member Avatar for sanjanaa
0
126
Member Avatar for The Dude
Member Avatar for Wasser
0
173
Member Avatar for mansi sharma

You can add a java script event handler for onclick like: [CODE] Label1.Attributes.Add("onclick", "Label1_Click()");/*on pageload,code behind*/ [/CODE] and write javascript like [CODE] <script type="text/javascript"> function Label1_Click() { alert("clicked"); } </script> [/CODE] I dont know wether there is a way to add a conventional event handler for OnClick for Label.We shall …

Member Avatar for Dhaneshnm
0
102
Member Avatar for fawadkhalil
Member Avatar for Dhaneshnm
0
637
Member Avatar for phoenix_dwarf

I think we cannot add a checkbox to a datagrid on code behind.But if you are good at javascript we can find a way to do that. [CODE] function AddColumn() { var tab =document.getElementById('GridView1');//Your DataGrid Id var rows =tab.getElementsByTagName("tr"); for(var i=0;i<rows.length;i++) { var currentrow= rows[i]; var newcell=currentrow.insertCell(-1); newcell.innerHTML="<input type='checkbox' />"; …

Member Avatar for phoenix_dwarf
0
431
Member Avatar for thilinam

Still its not very clear why you want to change the database.By authentication,you just want to validate the user name and password? Or you want include something more? Below link may give you some insight.. [url]http://msdn.microsoft.com/en-us/library/ms998347.aspx[/url]

Member Avatar for guru_sarkar
0
175
Member Avatar for Dhaneshnm

I want a file uploader,that doesnt cause post back in asp.net 2.0. With some googleing i found that if i set traget of the form to an iframe on the same page,i can avoid post back.But when i try this the page is getting opened in new window.(ie7 is the …

Member Avatar for Dhaneshnm
0
823
Member Avatar for Anupama G

You can use calender.VisibleDate and calender.SelectedDate ,to do that.Set the value of VisibleDate/SelectedDate to the value in the dropdown.Like... [CODE] Calendar1.VisibleDate= DateTime.Parse(date);//where date is a string [/CODE]

Member Avatar for Dhaneshnm
0
91
Member Avatar for suryasasidhar

You can use xslt for that.In asp.net we have System.Xml.Xsl namespace for supporting classes and methods for xslt.XslCompiledTransform class has Load and Transform methods which will be useful.

Member Avatar for Dhaneshnm
0
63
Member Avatar for mansi sharma

The below code should solve the problem... [CODE] <td onmouseover="style.backgroundColor='blue'" onmouseout="style.backgroundColor=''" style="cursor:pointer;"> hi </td> [/CODE]

Member Avatar for Dhaneshnm
0
199
Member Avatar for sanjanaa
Member Avatar for sandeep_1987

You can get data back using a select statement,store it in dataset, set datasource of grid view as the dataset,then use databind.

Member Avatar for carobee
0
151
Member Avatar for Dhaneshnm

i am using vs 2005.can i have rich text box for a web form? i am not finding it in tool box.if rich text box is not possible ,how can i have text box with rich text features in a web form?

Member Avatar for shree2006
0
115
Member Avatar for tintincute

use a while loop to get values.Then use an array list to store those values.use another loop to get the sum.your problem will be solved.

Member Avatar for dickersonka
0
119
Member Avatar for aashil

Here is the code:- please mark the tread as solved if you finds this useful [code]using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void …

Member Avatar for irishlonewolf
-2
196
Member Avatar for BLY
Member Avatar for Skorpion

Read the first chapter of this book "bluetooth essentials for programmers".It will give a nice overall idea,including bluetooth protocol stack.device discovery algorithm etc.The book is from cambridge University.Download it for free. [url]http://www.cambridge.org/catalogue/catalogue.asp?isbn=9780521703758[/url] tell if you need more help Dhanesh

Member Avatar for yogindernath
0
133
Member Avatar for redmaverick

hey p.setArea is not called.then how will area be calculated?(in main) Besides,if you are calculating area from radius,why should pass a parameter area to setarea in circleshape?

Member Avatar for BestJewSinceJC
0
123
Member Avatar for Dhaneshnm

This is my code: package hello; import javax.microedition.midlet.*; import javax.microedition.lcdui.*; /** * @author User */ public class TBexample extends MIDlet { Display display; public static String txt; TextBox sample; public TBexample() { txt = "enter your text here"; } public void startApp() { // String localtext ="hi"; display = Display.getDisplay(this); …

Member Avatar for Dhaneshnm
0
219
Member Avatar for mahe21.tri
Member Avatar for Dhaneshnm
0
47
Member Avatar for sharsha
Member Avatar for docaholic

you just have to modify else part a little 1.assign the result of recursive call to your list(l) 2.u r using the for loop to find smallest number in the list right?so put the above assignment out of the loop. 3.swap the smallest element with the first element of the …

Member Avatar for Dhaneshnm
0
304
Member Avatar for cljlxwater

@"can you tell me how i get the number of row about findRow". sorry,i am not able to make out what exactly you mean. Can you explain a bit?

Member Avatar for cljlxwater
0
77
Member Avatar for jk_bscomp
Member Avatar for Eager_Beever

Can you explain a bit? because User.Identity.IsAuthenticated has default value as true.

Member Avatar for Dhaneshnm
0
1K
Member Avatar for Derice

i dont think You can login automatically to your yahoo account compose a mail and send using an asp.net application. But you can set the from field of mail object to what ever you want, then whats the need to use yahoo/hotmail account?

Member Avatar for Derice
0
120
Member Avatar for Dhaneshnm

I am from chennai ,india. Codes in c,c++,Python and c#. Used to code in java. Also interested in mobile applications. Now want to learn ruby also.

Member Avatar for Robdale
0
53
Member Avatar for eswarsure
Member Avatar for shikeb

for java programmers c# will be easy to learn.And to begin this e-book seems to be nice: [url]http://www.programmersheaven.com/2/CSharpBook[/url]

Member Avatar for Dhaneshnm
0
292

The End.