Search results for query: *

  1. R

    Datagrid button's EditCommand

    Hi, Regarding your second question, what is the dataype of year in your table. And you need to use the & symbol while formin the query. Dim strSQL As String = "SELECT Title, Year FROM movieDet WHERE Year =' " & key & " ' " Good Luck, Reshma
  2. R

    URL Parameters or Session variables?

    Hi, If its a sensitive information, use of session variables is recomended than using the quertystring. Coz a user is able to see the data passed in the url as a part of the querystring and its also possible for the user to tamper the data. Good Luck, Reshma
  3. R

    radiobuttonlist property

    Hi, If you are using radiobuttonlist, then you might be inserting either radiobuttonlist1 values or radiobuttonlist2 values. You might be getting the null reference exception due to the insert statement. Build your insert statement dynamically based on the selected values. Then you will...
  4. R

    dynamic generation of datalist

    Hi, Is there any way to create a datalist dynamically through code?? Thanks, Reshma
  5. R

    dispalying web.config in browser

    hi, One way to display the file is by using httpHandlers in the web.config file: <configuration> <system.web> <httpHandlers> <remove verb="*" path="*.config"></remove> </httpHandlers> </system.web> </configuration> Is there anyother way other than this?? Thanks...
  6. R

    dispalying web.config in browser

    Hi, Is there anyway to display the web.config file in a browser?? Thanks, Reshma
  7. R

    how to do these settings in config file

    Hi, Machine.config file resides in the following path: C:\WINNT\Microsoft.NET\Framework\v1.1.4322\CONFIG Doubleclick the file and it will open up in visualstudio.net. In this file search for the processmodel tag. Change the username attribute to SYSTEM By doing this the server...
  8. R

    displaying flash files in AdRotator

    Hi, I want to display flash files using AdRotator in asp.net. Can anyone plz tell me how to do it?? And I dont want to create any custom control that inherits from the adrotator control. Thanks, Reshma
  9. R

    How to prevent textbox for being refreshed

    Hi, I have place an adrotator control on the webform and a textbox control. I have the meta tag so that the image in the rotator control changes for every 5 seconds. The problem is when the rotator is getting refreshed, image is changing but the data in the textbox is also lost. My...
  10. R

    how to use trgger in asp.net

    hi Nadeem, Triggers r those that get executed whenever an event occurs. So u can write them normally in sql and in asp.net, when u try to insert or update, the trigger get automatically fired at the backend. You can create a trigger in sql enterprise manager. The below one is...
  11. R

    Retrieve only column names of table

    Hi, Can anyone send me the sql query to retrieve only the colum names of a table. Thanks, Reshma
  12. R

    Help needed in Windows service

    hi Kartik, Your code is working fine. Butwhen I tried to write something into the event log, its giving the same error. Here's the code that I have written: ********************************************************* Dim logApplog As EventLog If Not...
  13. R

    Help needed in Windows service

    hi Kartik, Thanks for the reply. Sorry I was little bzy these days. I will surely try ur given code and reply u back. Regards
  14. R

    Pausing a windows service

    Hi, I have written a windows service with a notifyicon in the system tray. The service doesn't provide any functionality. When I try to pause the service from the system tray icon I am getting the error as service cannot be paused. Why is that the service cannot be paused?Do I need to set...
  15. R

    Help needed in Windows service

    Hi, I am Reshma, a new member to this group. I need help on windows service. I am trying to write a service that sends mails to employees on the birthday's by accessing data from a particular website. I wrote the service and it executed correctly. But after some I got some error. And now...
Back
Top