Recent Comments
Please leave your comment
Hi, thank you so much for your valuable code... Colud I except the code in the asp.net... I would greatly appreciate you..
Thank you..
its not working please give any other example of ajax web method.
Data validations in Silverlight is no fun. Check out these articles:
http://wildermuth.com/2009/10/05/What_Do_We_Want_in_Silverlight_Validation
http://outcoldman.ru/en/blog/show/260
http://www.wintellect.com/CS/blogs/jlikness/archive/tags/data+form/default.aspx
Hi Vijay..
In the code behind,Wen v trying to access the listbox item countin the target source.. it still showing zero..?? Do u hav any idea abt this issue..??
Really nice code...
Vijay, Nice column, I liked it.
To add to the list, I think in today's time a growing programmer must learn to read books on technology(s) he/she is interested in. Many programmers limit themselves to start with "Hello World" kind of thing and then they carry on the work as it comes with the guidence from web.
I particulary liked one of your statement -"I have seen good programmers who are good in trouble-shooting but poor in design. I have seen some good designers who are weak in trouble-shooting." I believe reading the subject helps in becoming good at designing and after you are exposed to the subject. It's the intution/gut feeling which makes you a good troubleshooter.
Vijay, Nice one :)
I love this line "Is it not common to find managers who appreciate well written emails, polished and respectful conversation more than well-written code?"
Keep writing!
Your code is good.. I love it. Anyway can you help me with this. Can we sort the listbox after moving it..
I want to get the same functionality with php and jquery, any tip, thanks, phycomp01@gmail.com
Correct syntax is:
var prm = Sys.WebForms.PageRequestManager.getInstance(); prm.add_initializeRequest(abortPostbacks); function abortPostbacks(sender, args) { if (prm.get_isInAsyncPostBack()) args.set_cancel(true); }
Where do you need to add this piece of code? thanks.
From beginning to end you nailed this post to the wall! Great Job!
Hey Vijay,
Your post was really helpful. Thanks for sharing!
Regards,
Neh
How can i add my own popup button to the toolbar
Very nicely written. Well categorized and insightful.
Testing this feature
Hello Vijay,
I have read your forum at "http://forums.asp.net/p/1525995/3681124.aspx" i am looking for a share-point like feature. You can click Action => Edit as Datasheet. I need to implement this feature in ASP.Net web applicaiton. Please let me know if you have any solution workarround for this. my email id is: knisha77@gmail.com. Thank you in advance for your help.
I am facing error in line Dim fs As New FileStream(sFilePath, FileMode.Open) The error is : Logon failure: unknown user name or bad password
Dim sId As String = "" Dim sFilePath As String = "" sId = context.Request.QueryString("id") If Not String.IsNullOrEmpty("id") Then sFilePath = "\\it-dt-04\AAA\aaa.png" Dim fs As New FileStream(sFilePath, FileMode.Open) Dim bytes As Byte() = New Byte(fs.Length - 1) {} fs.Read(bytes, 0, CInt(fs.Length)) context.Response.BinaryWrite(bytes) End If