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


Author filtered by: Vani Kulkarni [x]
Not a tip/trick by Vani Kulkarni
Forum Message 14 May 2013  
Its like telling a developer to open notepad or a wordpad. Thanks & Regards, Vani Kulkarni
Answer 13 May 2013   license: CPOL
In ASP.Net, DataGridView [used in windows forms] is called GridView. Take a look at following link that explains using gridview in asp.net web application:ASP.Net GridView[^]How to use ASP.Net Gridview[^]
Re: Log in ASP.NET by Vani Kulkarni
Forum Message 13 May 2013  
Take a look at following link in CP, hope it helps: User Activity Log in asp.net[
Answer 13 May 2013   license: CPOL
You can use online viewers to serve your purpose:Check these links:http://forums.asp.net/t/1749800.aspx/1[^]http://forums.asp.net/t/1757452.aspx/1[^]http://googlesystem.blogspot.in/2009/09/embeddable-google-document-viewer.html[^]Code that might help...
Answer 13 May 2013   license: CPOL
Did you try Google[^]?It returned around 362,000 results (0.23 seconds) for your query, top links being:HOW to sum column in crystal report[^]formula-to-sum-amount-column-in-crystal-report[^]Sum of columns in crystal...
Answer 12 May 2013   license: CPOL
Take a look at the following links:Simple Three Tier Architecture[^]A N-Tier Architecture Sample with ASP.NET MVC3, WCF, and Entity Framework[^]http://www.aspdotnet-suresh.com/2010/05/introduction-to-3-tier-architecture-in_17.html[^]sample project of wcf with 3 tier architecture[^]
Just a piece of code by Vani Kulkarni
Forum Message 9 May 2013  
This is not an article. Needs more explanation apparently. Thanks & Regards, Vani Kulkarni
Answer 7 May 2013   license: CPOL
Take a look at following links, hope it helps you:aspnet-web-service-or-creating-and-consuming[^]Creating and Using web service in ASP.Net[^]
Answer 7 May 2013   license: CPOL
Adding to Solution 1, since you are mentioning the Product as a dropdown, you need to make this change as well:com.Parameters.AddWithValue("@ProductName", cmbProductName.SelectedItem.Text); // Instead of cmbProductName.Text.
Forum Message 7 May 2013  
:thumbsup: Totally agreed! :) Thanks & Regards, Vani Kulkarni
Please format the code. by Vani Kulkarni
Forum Message 7 May 2013  
Please format the code using "Code" option. Article has grown horizontally wide. Thanks & Regards, Vani Kulkarni
My vote of 5 by Vani Kulkarni
Forum Message 5 May 2013  
Nicely explained with simple example. Thanks for writing this article.
Answer 5 May 2013   license: CPOL
PageSize is the property that can be used to set the number of records per page. From your code given above, I see that it is mentioned. However you also need to set, AllowPaging = "true" property of the gridview. See if it works after setting this property. Reply back if it does not.
Forum Message 5 May 2013  
Just a piece of code will not help. Please elaborate. Also tell the readers purpose of your article. Thanks & Regards, Vani Kulkarni
Answer 29 Apr 2013   license: CPOL
Check Google[^]. Top links being:http://code.msdn.microsoft.com/CSASPNETAJAXWebChat-c4c9b8fe[^]simple-chat-application-in-Asp-Net/[^]Simple Chat Application in ASP.NET[^]Chat Application using Web services in C#[^]
Answer 23 Apr 2013   license: CPOL
It's to verify that row (row in a gridview or detailsview), is of type dataRow. Gridview has different types of rows.1) Header2) DataRow3)Footer4) Pager5) Separator. 6) EmptyDataRowBased on what is supposed to be accessed, RowType is mentioned in RowDataBoundEventIf you...
Answer 23 Apr 2013   license: CPOL
Take a look at following code, see if it works:// Find the Employee and display it in the List Box private void btnFindFlightId_Click(object sender, System.EventArgs e) { SqlDataReader rdr = null; SqlConnection con = null; ...
Answer 23 Apr 2013   license: CPOL
Try Google[^] to get your answers. Top link being:hide-disable-commandfield-gridview[^]
Forum Message 22 Apr 2013  
Take a look at following links: store-connection-string-in-web-config[
Answer 21 Apr 2013   license: CPOL
Alter your stored procedure as below, so that it returns some value like below:Alter proc usp_DelTechnology( @TechnologyID int)ASBEGIN -- make sure we don't have reference descriptionsif(NOT EXISTS(select TechnologyID from tblTechnologySubTypes where TechnologyID =...
Answer 21 Apr 2013   license: CPOL
Depends on what kind of chart you want to display. There are over 55 total chart types for 2D and 3D charting in Devexpress. Take a look in the following link:Charting using Devexpress in ASP.Net[^]
Answer 17 Apr 2013   license: CPOL
Take a look at following links:Chat Application using Web services in C#[^]How to create a video chat application in C#.Net?[^]how-to-work-with-videos-in-asp-net[^]video-streaming-to-a-client-app-using-asp-net-web-api[^]Video+Chat+application+in+ASP+net+using+C+[^]
Answer 17 Apr 2013   license: CPOL
Take a look at following link, it gets the current financial year. You can tweak based on your requirement:http://www.dotnetpools.com/Article/ArticleDetiail/?articleId=63[^]Also below link, see if its helpful to you.sql-server-how-to-dynamically-determine-financial-year[^]
Answer 17 Apr 2013   license: CPOL
While using DataAdapter following steps are followed:1) Open a connection 2) Create a DataAdapter3) Fill a table using DataAdapter4) Bind table to GridViewReference from below link:http://www.dotnetperls.com/sqldataadapter[^]If above steps are followed, ensure the...
Forum Message 16 Apr 2013  
:laugh: :laugh: Thanks & Regards, Vani Kulkarni
Answer 15 Apr 2013   license: CPOL
Try defining property to access variable that is in user control.For ex: UserControl.ascx:enum monthsOfYear { Jan = 1, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec }; int x = (int)monthsOfYear.Jan;public int MonthName{ get { return x;...
Import excel data into mysql by Vani Kulkarni
Answer 15 Apr 2013   license: CPOL
First read data from excel and put it in a dataset then you have to insert data from that dataset to table.Take a look at following...
Answer 15 Apr 2013   license: CPOL
Each page will have its own named assembly (instead of a random name) it is easy to update the application by just updating the required assembly. Disadvantage is the large number of assemblies leading to difficulty in maintainence) and performance hit.Quote:From the MSDN article:Fixed...
Answer 14 Apr 2013   license: CPOL
I am assuming you are trying to write a watermark in your textarea and when there is a click on it you want the watermark text to disappear. It can be done using simple javascript or jquery or AJAX extender Take a look at following links, hope they help you:Using...
Forum Message 10 Apr 2013  
Hello All, Wishing you all a very happy Ugadi. For those who do not know about Ugadi Festival, please go through following link: Ugadi[
Answer 9 Apr 2013   license: CPOL
I am assuming that first 3 textboxes will have common or default values. If that is the case, why do you even need those 3 textboxes in the webpage? Keep only 7 textboxes, enter the data you want. While submitting include first 3 default values and values entered in next 7 textboxes, then...
Re: Badshah -- Jr NTR Movie by Vani Kulkarni
Forum Message 8 Apr 2013  
I had the same question as well. Who is Jr. NTR? Is it a hindi movie? I think SRK has acted in Badshah. Is there another movie with same name? Thanks & Regards, Vani Kulkarni
Answer 8 Apr 2013   license: CPOL
Creating an auto complete textbox in windows application:winforms-autocomplete-textbox-using-cs[^]
C#
Answer 8 Apr 2013   license: CPOL
Check this link:sql-server-get-time-in-hourminute-format-from-a-datetime-get-date-part-only-from-datetime/[^]
Answer 7 Apr 2013   license: CPOL
Try this code, it will open default mail client in your system. I am assuming your default mail client is Outlook. This is an email link: Send Mail
Answer 7 Apr 2013   license: CPOL
You are writing return false while calling javascript code. If you remove that it should work. Try and post if still not working.onchange="showAddress_Byamit(); return false"
Forum Message 7 Apr 2013  
Try adding machinekey in webconfig. See following link for more details: Validation of viewstate MAC failed.
Answer 7 Apr 2013   license: CPOL
Google[^] is your best friend. Also try following links:http://www.asp.net/ajax/documentation/live/tutorials/CreateSimpleAJAXApplication.aspx[^]http://ajax.net-tutorials.com/[^]http://asp.net-informations.com/ajax/ajax.htm[^]http://www.tutorialspoint.com/asp.net/asp.net_ajax_control.htm[^]
Answer 3 Apr 2013   license: CPOL
Hello, Take a look at following links:Asp Net Progress Bar Like Nukari[^]Percentage Complete Progress Bar (100% Completed) (ASP.NET)[^]http://forums.asp.net/t/1879764.aspx/1[^]RealTime_Progress_Bar_With_ASPNET_AJAX[^]
Awesome! by Vani Kulkarni
Forum Message 2 Apr 2013  
One word "awesome!". I am sure it is going to help lot many people out there. :thumbsup: All the best! :) Thanks & Regards, Vani Kulkarni
Answer 1 Apr 2013   license: CPOL
I am assuming that your database is SQL Server.Check this link, fileupload-control-save-images-database[^]how-to-save-images-into-database-using-Asp-Net[^]
Re: 10K points in CP!! by Vani Kulkarni
Forum Message 1 Apr 2013  
:java: :java: here you go! Have as much coffee as you want. ;P ;P :laugh: Thanks & Regards, Vani Kulkarni
Forum Message 1 Apr 2013  
Who here thinks that Cloud Computing is nothing more than marketing hype for really old technology? Thanks & Regards, Vani Kulkarni
Answer 31 Mar 2013   license: CPOL
Try this code:if(objHPF !=null && objHPF.ContentLength>0){ FileInfo finfo = new FileInfo(objHPF.FileName); string fileExtension = finfo.Extension.ToLower(); if (fileExtension != ".mp3" && fileExtension != ".wav" && fileExtension != ".wma") { //show error...
C#
Answer 31 Mar 2013   license: CPOL
Check this link, see if it helps you:uploading-and-storing-files-in-sql-using-asp-net[^]aspnet-download-and-upload-files[^]Save-Files-to-SQL-Server-Database-using-FileUpload-Control[^]
Answer 31 Mar 2013   license: CPOL
string selectedDate;selectedDate = dateTimePicker1.Value;Now store selectedDate into database.Check below link for example:datetimepicker-how-to-save-date-into-the-db[^]http://forums.asp.net/t/1391245.aspx/1[^]How to INSERT date into sql db date column using dateTimePicker?[^]
Replacing \n\r in C# by Vani Kulkarni
Answer 31 Mar 2013   license: CPOL
Check this link, see if it works:how-to-remove-newline-character-or-tab-characters-from-a-net-string[^]
C#
Crystal Report Error by Vani Kulkarni
Answer 27 Mar 2013   license: CPOL
See if below link helps you:Crystal Report - This field name is not known error.[^]
Answer 25 Mar 2013   license: CPOL
Take a look at following links:sql_join[^]beginner-sql-tutorial for sql-joins[^]Joins in SQL[^]SQL Joins[^]
Answer 25 Mar 2013   license: CPOL
See if below link helps:http://forums.asp.net/t/1410616.aspx/1[^]

Page 1 of 12
1 2 3 4 5 6 7 8 9 10


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