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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by thakral

  1. thakral

    No DataSetDataControl in Visual Web developer ??

    Simple great -- just found out that this control has been removed from ASP.NET 2.0 beta2. Is there any other control / quick way to implement a similar thing? i.e. load a Xml data into gridview control and allow editing / sorting etc. Thanks Anant
  2. thakral

    No DataSetDataControl in Visual Web developer ??

    Hi All developing something similar as in here What i am trying to acheive is display data in Gridview control where the data source is an xml file and allow editing. The problem is visual web developer doesnt even have that control? Does anyone know how can that control be downloaded and...
  3. thakral

    Need help with a simple select statement

    Hi Fredrico Do you mean this cannot be done using select but can be dont using a stored procedure? is it possible for you to provide an example? What i am trying to achieve is simply to get the corresponding values from Col1 in Col2 and if it does not exist return a '' instead of skipping...
  4. thakral

    Need help with a simple select statement

    Hi I have a table with 2 columns s below. What i want to achieve is a lookup like functionality. What i mean is i want to be able to pass '1','7','9' and get back 'Name1','','Name9' Any thoughts on how this can be achieved? I tried using Select * from table where Col1 in ('1','7','9') but the...
  5. thakral

    how to save posted image to a different server ?

    HI BoulderBum Thanks for replying ... i tried using "\\xxx.xxx.xxx.xxx\..\..\images\photo.gif" to send the files but apparently it tried to look for a folder with the following structure on local machine i.e. .11 server "c:\winnt\system32\xxx.xxx.xxx.xxx\..\..\images\" and threw out an error...
  6. thakral

    how to save posted image to a different server ?

    I have got a small page which simply allows user to upload a picture to the server I use a HTMLInput control called file then .. path = this.MapPath("")+"\\images\\"; file.PostedFile.SaveAs(path+filename); this helps me save the file to the server from which this page is invoked say for...
  7. thakral

    Refreshing a UC without redrawing the page

    Hi Question regarding User Controls functionality. Consider there is a page with 5 custom made User Controls with a few links. Each UC is showing different information. Now when user clicks on one of the links I have to update UC2 with new parameters. Question --> Is there a way to update...
  8. thakral

    Casing issue in ASP.NET

    Hi all just An EXAMPLE ---> just an example. just An EXAMPLE ---> JUST AN EXAMPLE. There are helper functions to convert cases to Upper and to Lower (above) but is there any class in ASP. NET than can help convert text to Camel casing ?? e.g. just An EXAMPLE ---> Just An Example ? Thanks.
  9. thakral

    onhover in stylesheet

    Hi all I need to create a link which on click redirects to a page 'aa.htm' and on hover shows a small window pulling information from 'bb.htm' . The problem is that this has to be achieved using stylesheets. My stlesheet looks like below stylename { link_prefix : "<a target=_blank...
  10. thakral

    Read Excel file to XML

    Hi Was wondering if it is possible to create a XML file by reading its contents from an Excel file. e.g. <root> <node1>Cell A7</node> <node2>Cell A8</node> <node3>Cell A9</node> <node4>Cell A10</node> <node5>Cell A11</node> </root> something similar to that ? Any ideas...
  11. thakral

    Iframe equivalent in .NET

    Hi all Tried searching previous threads but in vain so would like to ask if there is an 'iframe' equivalent of ASP in ASP.NET ? Any articles / thread / links welcome. Thanks
  12. thakral

    GPRS using TCP/IP in microcontroller

    hi I am trying to make a GPRS connection between a microcontroller (m16c) with the stack (tcp or ppp) and a computer connected to internet (eg webserver, or another GPRS enabled device.).Regarding this i have a couple of questions.. 1) Is it possible to have a GPRS connection over TCP/IP stack...
  13. thakral

    GPRS using TCP/IP in microcontroller

    Hi everybody I am trying to make a GPRS connection between a microcontroller (m16c) with the stack (tcp or ppp) and a computer connected to internet (eg webserver, or another GPRS enabled device.).Regarding this i have a couple of questions.. 1) Is it possible to have a GPRS connection over...
  14. thakral

    I am trying to make a GPRS connecti

    I am trying to make a GPRS connection between a microcontroller (m16c) with the stack (tcp or ppp) and a computer connected to internet (eg webserver, or another GPRS enabled device.).Regarding this i have a couple of questions.. 1) Is it possible to have a GPRS connection over TCP/IP stack (in...
  15. thakral

    M16C TCP/IP with GPRS

    I am trying to make a GPRS connection between a microcontroller (m16c) with the stack (tcp or ppp) and a computer connected to internet (eg webserver, or another GPRS enabled device.).Regarding this i have a couple of questions.. 1) Is it possible to have a GPRS connection over TCP/IP stack (in...

Part and Inventory Search

Back
Top