Forum: ASP.NET 1 Day Ago |
| Replies: 3 Views: 138 Do you want to resize the columns of a GridView?
ASP.NET GridView does not allow you to resize the columns by default. You need to extend the functionality programatically.
Take a look at the... |
Forum: ASP.NET 3 Days Ago |
| Replies: 1 Views: 115 Hi Raman,
Which database do you want to delete duplicate records?
I may need to write an article for each database.
For SQL Server, you ca find solutions in the following links.
How to... |
Forum: ASP.NET 3 Days Ago |
| Replies: 3 Views: 245 Hi Deepa,
Find some sample projects here.
Starter Kits and Community Projects (http://www.asp.net/community/projects/)
MSDN Code Gallery... |
Forum: ASP.NET 3 Days Ago |
| Replies: 5 Views: 296 You can try like this.
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
... |
Forum: ASP.NET 3 Days Ago |
| Replies: 3 Views: 266 Hi
Mark this thread as solved if your question is answered.
Regards
Ramesh. S |
Forum: ASP.NET 3 Days Ago |
| Replies: 2 Views: 116 FreeTextBox (http://freetextbox.com/)is a good one. |
Forum: ASP.NET 6 Days Ago |
| Replies: 2 Views: 204 ASP.NET TextBox control has a built-in Tooltip property which displays the tooltip text when the mouse is over the control.
If you want to implement a custom tooltip, refer this link.
TextBox... |
Forum: ASP.NET 6 Days Ago |
| Replies: 3 Views: 266 Pass the value as a query string from asp.net to php.
Also refer this link: Tips to Make ASP.NET Talk to ASP, PHP, RAILS and JAVA (Part 1) (http://www.codeproject.com/KB/cs/IntegrationTips.aspx) |
Forum: C# 8 Days Ago |
| Replies: 3 Views: 217 Hi MxDev,
Do you want to highlight mutiple strings in a TextBox controls or you want to highlight strings in multiple textboxes?
You can't highlight multiple strings in a TextBox control.... |
Forum: ASP.NET 8 Days Ago |
| Replies: 17 Views: 536 You need to use DataTable.NewRow to create new DataRow object with the same schema as the DataTable.
Try this.
Protected Sub gridview1_databound(ByVal sender As Object, ByVal e As... |
Forum: MS SQL 9 Days Ago |
| Replies: 3 Views: 419 Hi vuyiswamb,
Check the account under which the SQL Server instance is running.
SQL Server instance is generally running under Local System/Local Servce/Network Service accounts which may not... |
Forum: ASP.NET 10 Days Ago |
| Replies: 3 Views: 233 Which template?
Do you want to display it in template column in a GridView/DataList/Repeater or in a ContentTemplate?
Please provide more information in detail. It will help you to get a answer... |
Forum: ASP.NET 10 Days Ago |
| Replies: 17 Views: 536 Also refer this link.
http://forums.asp.net/t/1281411.aspx |
Forum: ASP.NET 10 Days Ago |
| Replies: 17 Views: 536 If you need to add empty rows to a GridView which is bound to SqlDataSource, you can do it via the stored procedure.
Assign a stored procedure to the SelectCommand property of the SqlDataSource.
... |
Forum: C# 11 Days Ago |
| Replies: 3 Views: 151 Refer these links.
Geotools.Net (http://geotoolsnet.sourceforge.net/Default.html)
MapWindow GIS Open Source Software (http://www.mapwindow.org/)
SharpMap (http://www.codeplex.com/SharpMap)... |
Forum: ASP.NET 11 Days Ago |
| Replies: 3 Views: 233 Do you mean ASP.NET Panel control or UpdatePanel?
If ASP.NET Panel, it is rendered as DIV at run time. Apart from that there won't be any issues when displaying a CheckBoxList inside a Panel or... |
Forum: ASP.NET 11 Days Ago |
| Replies: 17 Views: 536 A simple way is to add empty rows to the DataTable before binding to the GridView. |
Forum: ASP.NET 11 Days Ago |
| Replies: 17 Views: 536 Check whether the data source (such as DataTable, DataSet) bound to the GridView has records by putting a break point.
If DataTable has no records, then the GridView does not render anything. |
Forum: C# 11 Days Ago |
| Replies: 3 Views: 151 ArcGIS is a suite consisting of a group of geographic information system (GIS) software products produced by Environmental Systems Research Institute (ESRI).
ArcGIS provides the foundation for... |
Forum: ASP.NET 11 Days Ago |
| Replies: 3 Views: 227 There are some free javascript plugins available over web.
Try jQuery Lightbox Plugin (http://plugins.jquery.com/project/jquerylightbox_bal) .
Take a look at the demo site ... |
Forum: C# 11 Days Ago |
| Replies: 3 Views: 235 Try this.
using System;
using System.Drawing;
using System.Windows.Forms;
using MySql.Data.MySqlClient;
namespace MySqlDemo
{ |
Forum: ASP.NET 11 Days Ago |
| Replies: 3 Views: 420 Hi Rick Pace,
Please mark this thread solved if your question is answered.
Regards
Ramesh S |
Forum: ASP.NET 14 Days Ago |
| Replies: 4 Views: 218 Mark this thread Solved if your question is answered. |
Forum: ASP.NET 15 Days Ago |
| Replies: 4 Views: 218 Read this article (http://www.dotnetspider.com/resources/28002-Encryption-Decryption-using.aspx). |
Forum: ASP.NET 15 Days Ago |
| Replies: 2 Views: 266 Visit this link-> Hit Counter for ASP.NET (http://www.xdevsoftware.com/blog/post/Hit-Counter-for-ASPNET.aspx) |
Forum: ASP.NET 16 Days Ago |
| Replies: 2 Views: 188 I assume that you had created a WinForms application using VB.NET.
ASP.NET is a platform for developing web sites using .NET.
WinForms and ASP.NET differs in many things such as Architecture,... |
Forum: C# 16 Days Ago |
| Replies: 4 Views: 238 Hi Ishbir,
.NET have this feature. It is called Reflection... |
Forum: ASP.NET 16 Days Ago |
| Replies: 1 Views: 331 Try this.
ReportDocument cryRpt = new ReportDocument();
TableLogOnInfos crtableLogoninfos = new TableLogOnInfos();
TableLogOnInfo crtableLogoninfo = new TableLogOnInfo();... |
Forum: ASP.NET 18 Days Ago |
| Replies: 3 Views: 261 Hi Moody,
Post WinForms related questions here (http://www.daniweb.com/forums/forum61.html) in future.
Hope these links will help you.
Passing Data between Windows Forms - C# Corner... |
Forum: ASP.NET 18 Days Ago |
| Replies: 3 Views: 420 Try like this.
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
SqlDataSource1.SelectCommand = "SELECT customerID, lname, fname,... |
Forum: ASP.NET 18 Days Ago |
| Replies: 1 Views: 477 You need to to get the Request.UrlReferrer if(!IsPostBack) in the Page_Load event and store it in the viewstate if your page perform postbacks.
Sometimes the Request.UrlReferrer is null if you are... |
Forum: ASP.NET 19 Days Ago |
| Replies: 1 Views: 236 How do you say the value is not retrieved?
Does it throw any error?
Have you checked the value of the variable after the control goes to next line by putting a breakpoint? |
Forum: ASP.NET 19 Days Ago |
| Replies: 1 Views: 286 Try this.
Session.Abandon();
Response.Cookies.Add(new HttpCookie("ASP.NET_SessionId", "")); |
Forum: ASP.NET 19 Days Ago |
| Replies: 1 Views: 348 Can you please post your connection string?
SQL Server standard edition does not support 'User Instance' clause in the connection string which is only supported in SQL Server Express Edition.
... |
Forum: ASP.NET 19 Days Ago |
| Replies: 4 Views: 212 The values for date_of_visit and floor columns are specified in wrong order in the VALUES clause. Also value is not specified for time_out column. |
Forum: ASP.NET 22 Days Ago |
| Replies: 3 Views: 393 Try this code.
protected void btnDelete_Click(object sender, EventArgs e)
{
foreach (GridViewRow grow in GridView1.Rows)
{
CheckBox chkStat =... |
Forum: ASP.NET 22 Days Ago |
| Replies: 1 Views: 250 You cannot assigne multiple data sources such as DataTables, SqlDataSources to the bound columns in a GridView. The data source should come from a single object.
If your want to retrieve records... |
Forum: C# 22 Days Ago |
| Replies: 1 Views: 234 Try this code.
using System;
public class Calculator
{
public static void Main()
{
int num1; |
Forum: C# 22 Days Ago |
| Replies: 1 Views: 208 Hi Akil,
Read this article. Windows Mobile: Communicating with the Outside World (http://www.devx.com/wireless/Article/38030/1954)
Also refer this link... |
Forum: ASP.NET 23 Days Ago |
| Replies: 5 Views: 326 You can split a string into array of sub strings based on delimiter character such as space, comma.
string str = TextBox1.Text.Trim();
string[] temp = str.Split(' ');
... |