Hi, I am beginner in sharepoint how sharepoint differs from asp.net? how sharepoint works? Thanks in advance
Known is a drop , Unknown is an Ocean
Hi, I am beginner in sharepoint how sharepoint differs from asp.net? how sharepoint works? Thanks in advance
Known is a drop , Unknown is an Ocean
thanks for the reply. but i know how to insert,i asked insert query takes more time. how to decrease the time? is it possible to insert with out looping? dataadapter.update() or dataset.acceptchanges() helpts to insert or update to databse but my scenario my dataset has data from two database tables [person,address] is any other way to insert?
Known is a drop , Unknown is an Ocean
Hi, I have a dataset,which is a combination of two tables and has more than 5000 records. I want to insert all rows from dataset into db using for loop for (int i=1;ds.tables[0].rows.count;i++) { insert into tbl1 insert into tbl2 } but it takes a long time how to decrease the time to insert? thanks in advance
Known is a drop , Unknown is an Ocean
Hi, thanks for the reply. i am a .net developer,need to know about this sharepoint in dotnet? if you have any samples or tutorials regarding this, please give me the link? Thanks in advance
Known is a drop , Unknown is an Ocean
Hi, I want to study share point. how to start? how sharepoint differs from others? pls any one help me thanks in advance
I want to validate my conent with client side javascirpt regular expressions. words should not occur more than one time. ex ("one two one") here one comes more than one times, how to validate this using client side javascirpt regular expressions? and another, "one" should not come after the term "only".ex "only one", how to validate this using client side javascirpt regular expressions?
Known is a drop , Unknown is an Ocean
I'm using visual studio 2005 and ajax extension 1.0 and also I installed ajax control toolkit[downloaded from www.asp.net].when i added to toolbox,it shows an following error. There was an error loading types from assembly ‘C:\Program Files\Microsoft ASP.NET\ ASP.NET 2.0 AJAX Extensions\AjaxControlToolkit\Binaries\AjaxControlToolkit.dll’ ‘Could not load file or assembly ‘System.Web.Extensions,Version=1.0.61025.0,Culture=neutral,PublickeyToken=31bf3856ad364e35’ or one of its dependencies. The system cannot find the file specified.’ Any one known about this issue,help me Thanks in advance
Known is a drop , Unknown is an Ocean
hai I have an asp application which retrieve data from Database and write in text file using Server.CreateObject("Scripting.FileSystemObject").It Works good. before downloading(writing into a file), i have made some validation [retrieves data and checks data in a frontend[asp]] and recordset contains minimum 10000 records.My problem is after validation,I have tried to download a file, it shows an error 80070008 at line xx. At line xx, set fso=Server.CreateObject("Scripting.FileSystemObject"). I have checked all objects [connection,recordset] is closed or not.it was closed. But without validation, it works well. if anyone known about this,help me Thanks in advance.
Known is a drop , Unknown is an Ocean
I have tried a callback method in asp.net 2.0 with the help of following Serverside code --------------------- sOK = this.ClientScript.GetCallbackEventReference(this, "message", "ShowServerTime", "context", "OnError", true ); ------------------- void ICallbackEventHandler.RaiseCallbackEvent(string eventArgument) { //some internal proces } -------------------------------- string ICallbackEventHandler.GetCallbackResult() { return "OK" } ----------------------- Clientside Code function fnTest() { if(confirm("Are u sure?")) { <%=sOK%>; } } function ShowServerTime(timeMessage, context) { alert(timeMessage); } function OnError() { alert('An unhandled exception has occurred:\n'); } ---------------------------------- my problem is client side method ShowServerTime does not called if any one known about this help me thanks in advance
Known is a drop , Unknown is an Ocean
hai my code: Response.Clear(); Response.AppendHeader("Content-Disposition","attachment; filename=" + filename); Response.AppendHeader("Content-Length", filename.Length.ToString()); Response.ContentType = "text/plain"; //if pdf file "application/pdf" string strMapPath = Server.MapPath("~FolderName/filename); FileStream fs = new FileStream(strMapPath, FileMode.Open,FileAccess.Read, FileShare.ReadWrite); long bytesToGo; int bytesRead; Byte[] buffer = new byte[1048576]; bytesToGo = fs.Length; while (bytesToGo > 0) { bytesRead = fs.Read(buffer, 0, 1048576); Response.OutputStream.Write(buffer, 0, bytesRead); Response.Flush(); bytesToGo -= bytesRead; } fs.Close(); Response.End(); my problem is downloaded file .sql file[size:4mb], which was not fully downloaded, it partially downloaded.i.e the download file doesn't show the full content it shows only 10 or 15 lines. if anyone known about this,help me Thanks in Advance
Known is a drop , Unknown is an Ocean
hai I have a word template which has following format. Heading1 *Desc1 Heading2 *Desc2 Heading 3 *Desc3 i have an Desc1,Desc2,Desc3 in different tables in a database(SQLServer2000). I want to merge databasefield with the template with the help of asp.net 2.0 with C#. thanks in advance
hai I have a file which contains some hyberlinks and contents. like dfksjhsdfkh fdssdfhsdfkjhlsdfsdfhkldfshl dfssdfdfs jksdhklsdfhklsdfh. i want to retrieve hyberlinks using regular expression in javascript. if anyone known help me Thanks in Advance Ganesh Mohan -- modified at 7:19 Saturday 1st December, 2007
Thanks it works fine. IF anyone known about BCP related to this synario, please explain Thanks in Advance
hai i have more than 50,000 records in excel. i want to insert into a table which is in a sqlserver 2000 database. it takes more time, sometimes it shows timeout expired. is any simplest way to insert the data shortest period? Thanks advance Ganesh Mohan
hai Please anyone send dump question for SQLServer 2005(MCP)to me Thanks in advance
sp_tables which returns all tables in the database including system tables select * from sysobjects where xtype='U' which is also returns tables
Thanks John
hai if anyone known the difference between the delete and truncate and please give me an example thanks in advance Ganesh Mohan
hai please give me a example code?
hai thanks for the reply. Is it possible using hidden field?