Click here to Skip to main content
Page 1 of 3
Page Size: 10 · 25 · 50


Author filtered by: vinodkumarnie [x]
Answer 14 Apr 2013   license: CPOL
You can done this using many ways. some are as below..1. Using code behind2. Using JavaScript3. Using JQuerySee below link..Handling GridView events using RowCommand and using jQuery[^]Above link written for description, instead you put big image there. Tricks used is same.Hope...
My luckey number by vinodkumarnie
Forum Message 14 Apr 2013  
Hi friends.. For the first time i got my luckey numer 4444 in code project. :) :-D :laugh: Thank you very much to all for your kind support.. :) :) :) :)
Article 14 Apr 2013   license: CPOL
Handling controls inside GridView using RowCommand and jQuery.
My vote of 1 by vinodkumarnie
Forum Message 13 Apr 2013  
no explanations
Re: My vote of 5 by vinodkumarnie
Forum Message 12 Apr 2013  
Thank you Nandakishore. :) :laugh: :-D
My vote of 4 by vinodkumarnie
Forum Message 9 Apr 2013  
Nicely explained
Re: My vote of 4 by vinodkumarnie
Forum Message 9 Apr 2013  
Hi Jepy.. Thank you.. :) I appreciate your comment :) Vinod
Answer 8 Apr 2013   license: CPOL
I think you never googled single time..?I suggest you to learn basics of Ajax first, then start up with small examples. Then you will definitely learn it quickly and perfectly.Try below...
Answer 5 Apr 2013   license: CPOL
Hi.. User Ajax Timer do the same.. You can use UpdatePanel to avoid page refresh.Ex: Html part.. // place your gridview here to avoid page refresh for regular interval...
Answer 5 Apr 2013   license: CPOL
Here is a solution..Script below.. $(document).ready(function() { $(function() { var $radBtn = $("table.tbl input:radio"); ...
Answer 5 Apr 2013   license: CPOL
This techniques is know as css-spirits. Where all images are combined into one image and call the same image all over the website if necessary. First you should know the advantage of using css-spirits.1. Each images used in webpage is considered as a one http request while loading.2....
My vote of 4 by vinodkumarnie
Forum Message 4 Apr 2013  
hi there.. difficult to understood. explanations needed..
My vote of 5 by vinodkumarnie
Forum Message 4 Apr 2013  
Really very helpful for freshers.
Answer 4 Apr 2013   license: CPOL
Why can't you try like this...? Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Response.Write("hi") End Sub Hope this will help you..
Z-Index in CSS with example by vinodkumarnie
Tip/Trick 4 Apr 2013   license: CPOL
Z-Index a CSS property with example
Re: Not an article by vinodkumarnie
Forum Message 3 Apr 2013  
Thank you very much for your Suggestion. Since this is my first article, got confused a bit. In next articles I will include your thoughts. Thanks again. :) :) Vinod Kumar B C
Re: Not an article by vinodkumarnie
Forum Message 3 Apr 2013  
It not only speaks about showing and hiding.. But also tell about 1. Inserting rows into GridView through code behind using data table 2. RowCommand event functionality and its
Answer 3 Apr 2013   license: CPOL
Try below..$(document).ready(function() { $("#home").click( function () {alert("WOrking");}); });Or $(document).ready(function() { $("#home").click( function () { myfunction() }); }); function myfunction() { ...
Congrats by vinodkumarnie
Forum Message 2 Apr 2013  
Its really a great idea by you peoples. Hope this will help many.. :)
Answer 2 Apr 2013   license: CPOL
Try below..Script part $(document).ready(function() { $('.chkAll').click(function() { ...
Answer 1 Apr 2013   license: CPOL
There are many ways to do this..1. Use Font-Size attributeor
Re: 10K points in CP!! by vinodkumarnie
Forum Message 1 Apr 2013  
Ha ha ha.. ok ok.. Thank for the coffee.. Our turn will also come.. :-\ :)
Re: 10K points in CP!! by vinodkumarnie
Forum Message 31 Mar 2013  
Where is treat..? :) ;) :laugh:
Tip/Trick 31 Mar 2013   license: CPOL
Show or hide controls through code behind or through JQuery
Answer 31 Mar 2013   license: CPOL
Here is best way to do..using System;using System.IO;class Program{ static void Main() { string p = @"C:\Users\Sam\Documents\Test.txt"; string e = Path.GetExtension(p); if (e == ".txt") { Console.WriteLine(e); } }}Output.txtMore details see...
C#
Answer 31 Mar 2013   license: CPOL
You cann't access controls which are inside Gridview as like normal. You have do find those controls and then try to access those.See example below. protected void OnRowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) ...
Answer 30 Mar 2013   license: CPOL
Hi.. You can achieve this using Asp.Net Wizard control. It contains steps, where u can have your own controls. In Final step you can place button to save data.Advantages and disadvantages of Wizards as below..Advantages 1. a header for the title of a particular step 2. a sidebar...
Re: Suggestion by vinodkumarnie
Forum Message 29 Mar 2013  
You just have write "You are now in The Matrix" instead of "Connected to headset successfully"... Thats it. :)
jquery function not working by vinodkumarnie
Answer 29 Mar 2013   license: CPOL
Solution 1 is perfect solution for your Question..Also you can use blur instead of focusout... See example below..$(document).ready(function(){ $('.txtbox_focus').focus(function() { $(this).css("background-color","#cccccc"); }); ...
Forum Message 29 Mar 2013  
Hi.. You should download Ajax Toolkit control and include that in your project bin folder. So that you will get many controls. Vinod Kumar B C
Forum Message 29 Mar 2013  
Hi.. I am big fan of JQuery.. If you want to learn it well go through small small example. Yes, You can also achieve the above using JQuery easily..
Answer 29 Mar 2013   license: CPOL
Try below.. div1 div1label
Answer 29 Mar 2013   license: CPOL
Hi.. Really you asked best question.. Here is the reason why we should combine multiple images into one..1. Each images used in webpage is considered as a one http request while loading. 2. Webpage load time depends on number of requests in a page.3. As the number of requests is less...
Re: My Vote of 5 by vinodkumarnie
Forum Message 29 Mar 2013  
Thanks for your comments. Ya Sure.. If somebody tell us their requirements we will definitely try to help them.. :)
My vote of 5 by vinodkumarnie
Answer 28 Mar 2013   license: CPOL
Since all Aspx controls rendered as html controls you can write css as below..css below.. select { color:#FFFFFF; margin:0px 0px 0px 0px !important; padding:0px 0px 0px 0px !important; width:200px;...
Answer 28 Mar 2013   license: CPOL
Try below..protected void Page_Load(object sender, EventArgs e) { if (Page.IsPostBack == false) { //for datalist SqlConnection objConn = new SqlConnection(ConfigurationManager.ConnectionStrings["BuildMyPCConnectionString"].ToString()); ...
C#
Answer 28 Mar 2013   license: CPOL
If you want to store same data to both controls try below..protected void Page_Load(object sender, EventArgs e) { if (Page.IsPostBack == false) { SqlConnection objConn = new...
C#
Answer 28 Mar 2013   license: CPOL
You can done this using two ways..1. Using code behingJust load explanation of the question in panel for each questions and set visibility="false".. When user clicks on explain button set panel visibility="true"..Example : Html below.. Question 1. what is object..? ...
Answer 24 Mar 2013   license: CPOL
You just have to split the assigned modules values separated by comma(,) and bind it back as a string containing hyperlink and respected url..Original string : 1,3after reading to string variable split it : 1 3 etc..String after concating : 1 3 .....
Answer 24 Mar 2013   license: CPOL
You want to propose a Girl..? Then why are you asking us to help....?Don't you have guts to learn language well...? If you loving her truly you will definitely prove yourself by learning yourself..Take it as a challenge and contact me when you achieve the same..
C++
Answer 24 Mar 2013   license: CPOL
Try below link...http://stackoverflow.com/questions/4011696/convert-datetime-in-sql-server[^]
Horizontal tree in asp.net by vinodkumarnie
Answer 22 Mar 2013   license: CPOL
Refer below links.. It will help you..Custom TreeView Layout in WPF[^]
about choosing field... by vinodkumarnie
Answer 22 Mar 2013   license: CPOL
What you mean by Software developer..?Not only these courses make you software developer, but one who shown intrest in software development can be a good Software developer...Even I saw many good examples. Many of my friends who not at all came from Computer science branch, working as a...
Answer 21 Mar 2013   license: CPOL
Try below to split your string containing numbers separated by comma(,) operator.string s = "547283,546748,545497,545106,543740"; // Your stringstring[] values = s.Split(','); // splitting string based on (,) operator..//split values are below..//string[0] contains 547283//string[1]...
Answer 21 Mar 2013   license: CPOL
Try below..C# code below..protected void Page_Load(object sender, EventArgs e) { if (!this.IsPostBack) { if (DropDownList22.SelectedItem.Text == "IT") { Button1.CausesValidation = true; } else ...
Answer 21 Mar 2013   license: CPOL
The symbol '|' refers to [EDIT]Boolean Integer bitwise "OR" (it is Boolean "OR" only if both operands are bool)[/EDIT] operator...ASCII values for 'a' is 97, 'b' is 98, 'c' is 99 ....binary values for 97 is 01100001, 98 is 01100010, 99 is 01100011 ......Ex 1: 97 - 01100001 = a ...
C#
Answer 21 Mar 2013   license: CPOL
What S.A said is correct.. All aspx controlls will rendered as html controls..For more clarification put Aspx controls, run the page and see the page source on right button click..If you still didn't get try below..css.mylink{color:#565656;...

Page 1 of 3
1 2 3


Advertise | Privacy | Mobile
Web02 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid