Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Premalm
  • Content: Threads
  • Order by date
  1. Premalm

    GridView and AJAX

    Hi, I have a Gridview control which is under UpdatePanel control using AJAX. When I click the Select button in the GridView the SelectedIndexChanged button is not getting triggered asynchronously. It works fine if I remove the UpdatePanel Control but in that case it will do a PostBack and...
  2. Premalm

    RegisterStartupScript doesn't work...

    Hi Guys, I want to execute this code in Page_Load event. if (!Page.ClientScript.IsStartupScriptRegistered(this.GetType(),"PScript")) { string strJS = "<script language='javascript'>alert('test');"; this.Page.ClientScript.RegisterStartupScript(this.GetType(), "PScript", strJS); } For...
  3. Premalm

    GridView Control...

    Hi, I have a Gridview with a button as one of the columns. This is not a select button. How do I get access to the selected row of the GridViewRow Control and access the row in the button's click event. Thanks Pr.
  4. Premalm

    Connect to TeraDatabase using Teradata.Client.Provider

    I am trying to connect to TeraDatabase from an ASP.NET 2.0 application using Teradata.Client.Provider. I get the following error : System.DllNotFoundException: Unable to load DLL 'wincli32.dll': The specified procedure could not be found. (Exception from HRESULT: 0x8007007F) at...
  5. Premalm

    Asp.net projects oo a remote server...

    Hi Guys, We have a new development Server with IIS 6.0 and .NET framework 1.1.432 installed. What we want to do is move all the project files from the local pc to this server so that there is a single location. How can we use the IIS installed on this server from my machine ? I donot want to...
  6. Premalm

    One Control on top of the other

    Hi Guys, Can I put One Control on top of the other in ASP.Net ? I need to place a text box on top of a hyperlink control so that at run time either the text box or hyperlink control is visible ? Even if I set one control's visible property to off it still takes the space. I do not want the...
  7. Premalm

    One control on top of the other

    Hi Guys, Can I put One Control on top of the other in html ? I need to place a text box on top of a hyperlink control so that at run time either the text box or hyperlink control is visible ? Even if I set one control's visible property to off it still takes the space. Can this be done ...
  8. Premalm

    Vallidate a user typed link

    Hi Guys, I was wondering if there is any way to validate a user typeed link. The user is going to type or copy the link in a text box. Is there any way to validate this link through some code ? Thanks Pr
  9. Premalm

    Links in TextBox

    Hi Guys, I want a way to enter links in a text box on a ASP.NET Page ? How is this possible ? Any Ideas ? Thanks Premal
  10. Premalm

    Access Denied while creating a file

    Hi Guys, I have an ASP.NET application. I am tring to create a rtf file in a folder data which is under the Default folder. Whenever it tried to create the file it gives me an error "Access to the path "d:\sites\default\wwwroot\data\719102336.rtf" is denied." I tried giving read write...
  11. Premalm

    VS 2005 Web application

    Hi Guys, I have being using the ASP.NEt Web application option in visual studio 2003. I have just installed visual studio 2005 and was looking for the ASP.NET Web application option and couldn't find it. How do I create a web application in VS 2005 ?. Any ideas Thanks. Premal
  12. Premalm

    C dll in ASp.net

    Hi Guys, Is there any way we can call a C dll in .Net. I have a C DLL and am trying to call one of the functions of the dll but the return value is a huge number. Does any one have an example which use a C dll in .net ? Thank you Premal.
  13. Premalm

    2 Quotes in a string

    Hi Guys, How do I put "" (2 quotes) in a string ? I want to do something like this (excel formula) =IF(A12="","",B12/E39) but through code. Thanks Premal
  14. Premalm

    IE back button.

    Hi Guys, Is it possible to capture the IE back button event by using the server side coding ? Any Ideas Premal
  15. Premalm

    __dopostback not working

    Hi Guys, In my page whenever the user leaves the page I want to save all the data. So onbeforeunload event I call __dopostback('butUpdate',''). I have written a javascript function function __dopostback(eventTarget,eventArgument) { var theform = document.Form1; theform.__EVENTTARGET.value =...
  16. Premalm

    Pdf Output a blank page.

    Hi Guys, I have a Asp.NEt application in which I want the output to be in a PDF file. I am able to create the out put in a pdf format but when I try to view it, it shows me a blank page. Here's the code I have: Response.BufferOutput = True Response.Clear()...
  17. Premalm

    How can Series name be a reference to a cell value...

    Hi Guys, I need to Set the Legend names as a reference to a cell value. i.e. I have a line graph with 2 series. The Series name is usually a string value (column name). What I want is it should be a reference to the column heading so that if the heading changes the graphs legend names are...
  18. Premalm

    Passing Error information to HTM page.

    Hi Guys, I have a ASP.Net Application in which I do a response.redirect and call a htm page. I have to pass a error description to the htm page. I do not want to use the query string method. Is there any other method by which I can show the error description in the html page dynamically...
  19. Premalm

    Producing Excel Spreadsheets and charts on Web Server

    Hi Guys, I have looking for a .NET is 100 percent safe managed code which produces Excel Spreadsheets and should also support extensive Excel Charts. We have tried OfficeWriter and Office Web Compoments but have problems with it so can't use it on the Web Server. Any Ideas Thanks Premal
  20. Premalm

    Hiding the underling in a &lt;a href&gt; tag...

    Hi Guys, I have a menu Item "Test" which is in a link <a HREF=" & sPage & " class=menuNormal> " & sMenuItem & " </a>" I want to remove the underline in the link ? is this possible ? Any Ideas ? Thanks Premal

Part and Inventory Search

Back
Top