Page view counter

Browse by Tags

Related Posts

  • Google Maps via ASP.NET / SQL Server Tutorial

    Hi, I worked out for google map with ASP.Net / VB.Net. below steps you have to follow, 1. You need to get encrpyted key from google which key for your own website. 2. create a table as below, if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[map]') and OBJECTPROPERTY(id, N'IsUserTable'...
    Posted to Tips & Tricks (Forum) by antonyvijayan on 07-08-2008, 12:00 AM
    Filed under: asp .net ... c# ... SQL, .net, .NET Answers, .Net FAQ Links, .Net Faqs, Access, ADO.Net, Asp .net, ASP.NET, asp.NET 1.1, asp.NET 2.0, ASP.NET AJAX, c#, class, Code sample, Code sample sql script countries country province Provinces server 2000, code snippets, daily Free Code, structure, asp, Database, Ajax xml-script Tabstrip, ASP.NET TextBox Javascript MultiLine MaxLength, FAQ, User control, .NET applet, Abstract class, SQL, email, aspose.newsletter, .net interview faqs, .NET Interview Question, .net layered design
  • Re: mysql 'latin5_turkish_ci' error

    In asp code, i solutate Turkish character error same this code. But i can't do this in asp .net. How can i do it. { Set bag = Server.CreateObject("ADODB.Connection") bag.Open "Driver={MySql ODBC 3.51 Driver}; Server=localhost; uid=root; pwd=123456; database=deneme; option=3; port=3306;"...
    Posted to MySQL (Forum) by senol on 03-12-2008, 12:00 AM
    Filed under: aspnet, asp.net, MySQL.NET connector on Medium Trust Level, ASP.NET 2.0, ASP.NET Membership, database, Connection with MySQL Database from ASP.NET 2.0, file, db, connect to MySQL on remote PC, MySqlClient, mysql.dll, C#, MySQL 4.1, mysql 5.0, error, Connection, connect to, mssql
  • Re: How to save the value of FCKeditor to database?

    Regarding the "validateRequest=false" syntax; this is very risky from a security perspective. You can work around this, but fortunately you do not need too as the work around was added to FCKeditor. There has been a new property added "HtmlEncodeOutput". Check out the following link...
    Posted to Component Discussions (Forum) by WashingtonKayaker on 03-06-2008, 12:00 AM
    Filed under: FCKeditor, ASP.NET, c#, Database, HtmlEncodeOutput, validateRequest=false
  • Re: Problem sending values to stored procedure

    when i tried to Convert.ToDouble i got this error message "Cannot implicitly convert type 'double' to 'float'. An explicit conversion exists (are you missing a cast?)" the stored procedure works fine. I tried it with 20.1 Also it doesn't matter to using 20.1 or 20,1 a.proTocusWt...
    Posted to Data Access and ObjectDataSource Control (Forum) by murat.tufanoglu on 02-26-2008, 12:00 AM
    Filed under: Database, ADO.NET, C#, databind, Asp.Net 2.0, ASP.NET, Class, .net 2.0, .net, ASP .NET 2, Parameter, asp .NET 2.0, Sql Parameters, visual studio 2005, asp.net2.0, asp.net2.0(c#), 2.0, OOP
  • How to copy data from one excel file to other excel file

    Hi I have two excel file (Ex1 and Ex2), both have same template (headers) and data will be populated from the dataset. Upto this step its works fine. My question : How to copy the data form 6th row to last row of "Ex2" and paste it into the "Ex1" after the last row in Ex1. Advance...
    Posted to Enterprise Services Integration (Forum) by SudhaYogesh on 09-12-2007, 12:00 AM
    Filed under: Asp.Net 2.0, Asp.Net 2.0 session, ASP.NET, Asp.Net 1.1, asp.net 2.0 asp.net, GridView field, ASP.NET Sites, VB.Net, asp, DotNet, reports, grid view, ASP.net 2.0 Tutorials, selection, C# code, Asp.NET2.0, ado.net, dataset, datareader, ASP.NET.NET 2.0, postback variables, c#, sql, database, datasource, Asp.Net 2.0 and MS SQL Server 2005, querystring, update, sqldatabase, t code behind, Find Control, excel, asp.net 2.0 export to excel
  • Re: How to convert Unicode(english) language to (arabic,french,etc.,) from database.

    hi, Thanks for your Tutorial it is helpful for static page but I need to dynamically change the language. eg. User can Enter the name,address,etc in English language and it is stored into database. if any user choose any language(eg: arabic) from the drop down menu the saved information from the database...
    Posted to Visual Basic .NET (Forum) by magesh22 on 09-04-2007, 12:00 AM
    Filed under: .NET, ASP.NET, c#, database
  • Re: Record(s) cannot be read; no read permission on 'MSysObjects'.

    If you people are using AccessDataSource and having error " Record(s) cannot be read; no read permission on [table] ", first step is to open up the MDB file and assign full rights to Admin user for each & every table either its system or hidden table. if you want to see all system &...
    Posted to Access Databases and AccessDataSource Control (Forum) by moizdhanji on 08-08-2007, 12:00 AM
    Filed under: database, Odbc, access, c#, mdb, AccessDataSource INSERT problem, Access database query string, vb.net, asp.net, Access Database - FileDSN in ASP.NET 2.0, Access Database, data access, OLEDB - Relative Connection string, accessdatabase, Microsoft Access Database Delete, .aspx.vb, .Net 2.0, ASP.NET 2.0
  • How to convert Unicode(english) language to (arabic,french,etc.,) from database.

    Hi All, I want to develope multi language website using asp.net2.0 and sqlserver2000. in that i need to retrieve the user entry values from database to user choose language. for ex. User choose arabic i need to show all the content in arabic language i already showed the static content using resource...
    Posted to Visual Basic .NET (Forum) by magesh22 on 08-06-2007, 12:00 AM
    Filed under: .NET, ASP.NET, c#, database
  • How do I custom view using AccessDataSource?

    Hello and sorry for weak English! I am new in Asp.net and I need you help to solve my problem: I create an access database and AccessDataSource the will select a special record using query string. There is no problem up to here, but I cannot I mean I do not know how to customize the view of the items...
    Posted to Access Databases and AccessDataSource Control (Forum) by qteks200 on 05-29-2007, 12:00 AM
    Filed under: database, c#, mdb, AccessDataSource INSERT problem, Access database query string, asp.net, Access Database - FileDSN in ASP.NET 2.0, Access Database
  • retrieving images from database and displaying on Image control

    Hi all i need a solution for displaying an image which must be retrieved from database table(photo displaying).I used the following code,but it shows error as "Invalid Parameter used" page_load() { cn.Open (); SqlCommand command = new SqlCommand ("select *from image1 ", cn); byte [] image = ( byte [...
    Posted to Data Access and ObjectDataSource Control (Forum) by magesh22 on 05-09-2007, 12:00 AM
    Filed under: Database, ADO.NET, C#, ASP.NET
Page 1 of 2 (15 items) 1 2 Next >
Microsoft Communities