Search

You searched for the word(s): userid:791682

Matching Posts

  • Excel to SQL Server

    hi all, I ant to transfer Excel data to SQL server 2005, i have done it using this code ---- OleDbConnection ExcelCon = ExcelConnection(FileName); OleDbCommand ExcelCmd = new OleDbCommand("select * from [sheet1$]", ExcelCon); ExcelCon.Open(); IDataReader eRdr = ExcelCmd.ExecuteReader(); DataTable tb = new DataTable(); tb.Load(eRdr); SqlConnection myConnection = getSqlConnection(); myConnection.Open(); SqlBulkCopy bulk = new SqlBulkCopy(myConnection); bulk.DestinationTableName = ctrlDestination
  • Javascript as Resource

    Hi all, Thanks for your help. As asual i need it again. I have created a Javascript .JS file. I want to use it as a resource file. How to achive this. I want to embade .js file as a resource. I am using dot net 2008. Please do reply.
    Posted to Web Forms (Forum) by bubbly on 6/28/2009
  • Sys.Webform.PageRequestManagerParserErrorException

    I have used UpdatePanel. Inside update panel i am having TabControl and each TabControl has GridView and LinkButtons. When i click on LinkButton to download a file or to show Popup, it displays "Sys.WebForm.PageRequestManagerParserError" with new details for evry button. I m gving code. Please help me to solve problm, how to fix this exceprion. protected void gdInprocess( Object src, GridViewCommandEventArgs e){ if (e.CommandName == "download" ){ Int32 qid = Convert .ToInt32(e
  • Regarding Storing of Client side date in database

    Hi all, I want to get date of client and save it in database on button Click. So i called javascript function on "onClientClick" event of a button , I am able to show date in tag as a InnerText. But on server side C# code i am not able to get that Date in "onClick" event of button. Why is so? I used " String dt = Clock.InnerText " where Clock is my Span running at Server. I am getting blank space. Please suggest solution, its very urgent. Thanks in advanced
    Posted to Client Side Web Development (Forum) by bubbly on 12/19/2008
  • Pop up window.

    hi all, Thanks for help. I have open a pop up window on button click. After closing that window i want to execute all the code which i have written after calling pp up window. but it does not executes. How to execute it? Is there any way to do it? Plesae help. Thanks in advanced!
    Posted to Web Forms (Forum) by bubbly on 11/18/2008
  • how to design page dynamically

    hi all, how can i design or change designs in a page dynamically. i.e. I m creating a popup window and adding contents in it from database. i want to add rows in table on that page through coding , how to do this? is thr any property or method exist with Page? Please help. thank you.
    Posted to Data Presentation Controls (Forum) by bubbly on 9/26/2008
  • Scrollbars in gridview

    hi all, How to add horizontal and vertical scrollbars in gridview? i have done it using <div> tag, but there is problm.Using this when i scroll down, the header row also get moved, i dont want this. i want Header row tobe foxed while scrolling. How to do this. Please reply. Thanks in advanced!
    Posted to Data Presentation Controls (Forum) by bubbly on 9/24/2008
  • About Validation string

    Hey all, Hi, I want to validate text box. i want to restrict single quote ( ' ), but user should be able to enter it once not next time, even user should be able to enter any character, alphabet and number and he can enter single quote only for 1 time. Eg - May45%^'wey is correct but Ma'y45%^'wey is incorrect. Please give me validation string. I tried lot, but not getting result.
    Posted to Client Side Web Development (Forum) by bubbly on 9/18/2008
  • regarding Title bar

    hi all, I open the small IE window to show comments, but i want to display only "Comment" word as a title , dont want to display "Windows Interner Explorer" this difault text on title bar. Is this possible? how to do it? Thanks in advanced.
    Posted to Client Side Web Development (Forum) by bubbly on 9/12/2008
  • Regarding Connection pooling

    Hi all, I have used SQL Server 2000 in my ASP .net application. Here i want to use connetcion pooling, i searched a lot about it and now am clear with concept. But how to impletement it programatically. For each query i open the connection and close after transaction. i put connection string in web.config file. This is my code sample. < add key = " connString " value = " Server=localhost;Database=DB1;Uid=sa;Pwd=123; " /> SqlConnection connection = null ; String sts = ""
Page 1 of 6 (52 items) 1 2 3 4 5 Next > ... Last »