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


Author filtered by: Prasad_Kulkarni [x]
Client SIde & Server Side by Prasad_Kulkarni
Answer 13 May 2013   license: CPOL
Client side refers to the browser which is viewing the web page delivered by the server. This is HTML and Javascript, maybe Shockwave flash, maybe Silverlight.Server side refers to the application on the web server which delivers the web page content.In brief:Server side: Create and...
Answer 13 May 2013   license: CPOL
Check similar QA:here[^] and here[^]Also try here[^]
java script in asp.net by Prasad_Kulkarni
Answer 12 May 2013   license: CPOL
Something like this:protected void Page_Load(object sender, EventArgs e) { System.Web.UI.ScriptManager.RegisterClientScriptBlock(Page, typeof (Page), "script", "go()", true);}For more detailed description look here[^]
Yes the main developement by Prasad_Kulkarni
Forum Message 12 May 2013  
That's where the actual logic get built. That's where the methods and everything you have learned get applied. (Commenting code, naming conventions etc.) That's the part from where KT is needed; and
Answer 28 Apr 2013   license: CPOL
Refer: Similar answer[^]
Answer 28 Apr 2013   license: CPOL
Example 1[^]Example 2[^]..and 299,000 examples here[^]
How to join two data base by Prasad_Kulkarni
Answer 17 Apr 2013   license: CPOL
Try this:SELECT a.userID, b.usersFirstName, b.usersLastName FROM databaseA.dbo.TableA a JOIN database B.dbo.TableB b ON a.userID=b.userIDFound it here[^]
SQL
Answer 17 Apr 2013   license: CPOL
Try this:void NumberValidation(object sender, KeyPressEventArgs e) { if ((e.KeyChar >= 48 && e.KeyChar
C#
Answer 15 Apr 2013   license: CPOL
Refer similar discussionhttp://social.msdn.microsoft.com/Forums/en-US/winforms/thread/873e86e4-e5c9-4abb-9549-4f0ed27fbef8[^]http://social.msdn.microsoft.com/Forums/en-US/winforms/thread/4706be23-03ac-4b40-8a58-91191a204361[^]
Answer 14 Apr 2013   license: CPOL
Check out couple of similar discussionsDiscussion 1[^]Discussion 2[^]
Megento dot net books by Prasad_Kulkarni
Answer 14 Apr 2013   license: CPOL
Tried here[^]?Lot of links are there for you.
GridView In asp.net by Prasad_Kulkarni
Answer 9 Apr 2013   license: CPOL
Refer:GridView Custom Paging with PageSize Change Dropdown[^]GridView Custom Paging[^]
Answer 8 Apr 2013   license: CPOL
Try this:SELECT * FROM tblEmployeeTimeCards WHERE CONVERT(DATETIME, dtcreated) >= fromdate AND CONVERT(DATETIME, dtcreated)
Answer 1 Apr 2013   license: CPOL
Have a look on following thread:Only Numeric In String[^]
Answer 1 Apr 2013   license: CPOL
Have a look on following thread:http://msdn.microsoft.com/en-us/library/bb288032.aspx[^]..and a similar discussion[^]
Answer 1 Apr 2013   license: CPOL
Have look on following thread:Enabling SSL[^]From similar discussion[^]
Answer 1 Apr 2013   license: CPOL
Here you go[^], check out lots of results.
Find the difference in two List by Prasad_Kulkarni
Answer 26 Mar 2013   license: CPOL
Have a look on similar discussion here[^]
C#
Clear all textbox in C# by Prasad_Kulkarni
Answer 26 Mar 2013   license: CPOL
Try this:public static void EmptyTextBoxes(Control parent) { foreach (Control c in parent.Controls) { if (c.GetType() == typeof(TextBox)) { ((TextBox)(c)).Text = string.Empty; } }Found it here[^]
C#
Answer 25 Mar 2013   license: CPOL
Refer: How to archive data from my production database?[^]
Answer 25 Mar 2013   license: CPOL
Refer following thread:How to run a Visual Studio application as 32-bit on a 64-bit machine[^]
How can i pass the ID? by Prasad_Kulkarni
Answer 25 Mar 2013   license: CPOL
Try this:To pass value in query string:Response.Redirect("Item.aspx?Id=1");To get value from query string:For string:String Id = Request.QueryString["Id"].ToString();For int:int id= Convert.ToInt32(Request.QueryString["Id"]);Also, have a look on following thread:Passing variables...
C#
I'm new to Collections by Prasad_Kulkarni
Answer 25 Mar 2013   license: CPOL
Yes google[^] WILL for sure!
C#
Answer 19 Mar 2013   license: CPOL
Firstly you need to do a simple search on google[^] before posting question here.You can also try MSDN, to get detailed description with some code snippetsReporting Services Reports (SSRS)[^]Not far, you can even get lot more articles and QA on SSRS in CodeProject[^] itself.
Answer 19 Mar 2013   license: CPOL
Refer:How to write Stored procedure to Your Data Insert Application[^] Using insert stored procedure with c#[^]
Answer 19 Mar 2013   license: CPOL
Read about ADO.NET here and it will help you. Look at these:MSDN: ADO.NET[^]MSDN: Accessing Data with ADO.NET[^]The C# Station ADO.NET Tutorial[^]Using ADO.NET for beginners[^]You just need 9 steps to follow to store your text box value to SQL, Check here:How to insert Data in SQL...
Answer 14 Mar 2013   license: CPOL
Have a look on similar discussion:How to check if an Excel Range is empty in C#[^]Check if a cell is blank in excel[^]
C#
Answer 14 Mar 2013   license: CPOL
Refer following thread:Transferring Data Between ASP.NET Web Pages[^]Also have a look on different state management techniques: How to pass data from one form to another in C#?[^]
Answer 14 Mar 2013   license: CPOL
Please check this article:Multilingual Support in C#[^]
Answer 14 Mar 2013   license: CPOL
You need Windows Service[^] for this.Sample: Simple Windows Service which sends auto Email alerts[^]Details about Windows Service: MSDN: Introduction to Windows Service Applications[^]Sending Automated Emails asynchronously using a C# Windows Service in conjunction with Database Email...
How to get Date from dateTime by Prasad_Kulkarni
Answer 14 Mar 2013   license: CPOL
Update your query and add this line to your date column:SELECT CONVERT(nvarchar, GETDATE(), 101)[Updated]Use EntityFunctions.TruncateTime Method [^]Also check this similar discussion: Select date from datetime[^]
problem with send email by Prasad_Kulkarni
Answer 13 Mar 2013   license: CPOL
Check out similar discussion on CP:The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.[^]
Answer 13 Mar 2013   license: CPOL
Try this;private void MailSend() { try { MailMessage mail = new MailMessage(); SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com"); SmtpServer.Host = "smtp.gmail.com"; mail.From =...
views concept in sqlserver by Prasad_Kulkarni
Answer 13 Mar 2013   license: CPOL
Yes, google[^]!
need a simply tutorial by Prasad_Kulkarni
Answer 13 Mar 2013   license: CPOL
Refer:Connect To POP3 Server[^]Connecting to a POP3 server using C#[^]Retrieve Mail From a POP3 Server Using C#[^]..and more you can get here[^]
C#
Answer 13 Mar 2013   license: CPOL
Refer:Exporting gridview to pdf with images[^]
C#
Answer 13 Mar 2013   license: CPOL
Knowing HTML, JavaScript, CSS and obviously C# or VB is all you need to be a good MVC developer. You shouldn't be doing any web development if you don't know the client part (ie, HTML, CSS, JS; etc). It's true that there are several guys out there that only user asp.net web server controls,...
Learning complete .Net by Prasad_Kulkarni
Answer 12 Mar 2013   license: CPOL
The very first thing I would like to mention here is that, each programming language has its relative strengths and you have to understand the features unique to each language.Learning programming languages(generally) is based on two crucial factors --Amount of cool stuff you can do with...
Answer 12 Mar 2013   license: CPOL
Refer:ASP Uploader[^]..and many more here[^]
how to generate report in php by Prasad_Kulkarni
Answer 12 Mar 2013   license: CPOL
Look here[^]
PHP
Answer 12 Mar 2013   license: CPOL
Tried google[^]??You'll get around 9,170,000 results.Here is one from CP:Static-Site Search Engine with ASP.NET/C#[^]
C#
Answer 12 Mar 2013   license: CPOL
Refer: AutoComplete TextBox[^]AutoComplete Text Box in wndows form[^]
C#
Answer 11 Mar 2013   license: CPOL
You can have a look on MailAddress Class[^]public bool IsValid(string emailaddress){ try { MailAddress m = new MailAddress(emailaddress); return true; } catch (FormatException) { return false; }}This is something where you don't...
Answer 11 Mar 2013   license: CPOL
Try this:SqlParameter WarrantyTillparam = new SqlParameter("@WarantyTill", SqlDbType.Date);DateTime yourDateTime = DateTime.ParseExact(txtwarrantytill.Text, "yyyyMMdd", CultureInfo.InvariantCulture);WarrantyTillparam.Value = yourDateTime;//WarrantyTillparam.Value = txtwarrantytill.Text; ...
Answer 11 Mar 2013   license: CPOL
Try this:#include #include "boost/date_time/gregorian/gregorian.hpp"namespace bdt = boost::gregorian;int main(void){ bdt::date today(bdt::date(2010, bdt::Jun, 13)); bdt::date electionDay(bdt::date(2010, bdt::Nov, 2)); bdt::date_period range(today,...
Paging using repeater by Prasad_Kulkarni
Answer 11 Mar 2013   license: CPOL
Have a look on this CP article, you will surely get some help out:Repeater with Paging and Sorting Features[^]Here's one which is quite similar to your requirement:Custom Paging with the ASP.NET Repeater Control[^]
Answer 11 Mar 2013   license: CPOL
Try this:Dim strDOB As StringstrDOB = txtDateOfBirth.TextDim intAge As IntegerintAge = Math.Floor(DateDiff(DateInterval.Month, DateValue(strDOB), Now()) / 12)lblAge.Text = intAge
Fixed header in grid view by Prasad_Kulkarni
Answer 6 Mar 2013   license: CPOL
Please refer:My answer for similar question: How to make static header in gridview?[^]Some good links on CP:Gridview with Fixed Header[^]Gridview Fixed Headers[^]Grid View with Fixed Header[^]Similar discussion:Fixed GridView Header[^]CP Search:Grid with fix Header[^]
Answer 6 Mar 2013   license: CPOL
Refer: How to Create Dynamic Crystalreport with Parameter Passing in C# Windows Application[^]Crystal-Report-in-windows-application[^]..and huge result list here[^]

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


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