Jump to content
Xtreme .Net Talk

sureshcd10

Avatar/Signature
  • Posts

    78
  • Joined

  • Last visited

Everything posted by sureshcd10

  1. Scenario: I am calling a C# dll into VB6 via Server.CreateObject . I want to pass some parameter into that class which which contains 2 methods in which one is taking one parameter . So while calling this class I have to send parameter value also . Please help me in this regard --how to pass parameter in Server.CreateObject.
  2. Here is the answer Button btnName = (Button)Wizard1.FindControl("HeaderContainer$Button"); This is working fine :)
  3. Hi, How to get the ID of a control placed in HeaderTemplate of a wizard Control ? I placed one Button control in the header template of a Wizard control. Now how can I programatically get the id of button which is placed in header template ? can you plz help me with this :confused:
  4. I Have below security requirement for my ASP.NET web application (Framework 1.1) The cookies need to be specific to a particular client system � either by tying them to a particular IP address, or by making them dynamic (i.e. changed with each request). Any suggestions or ideas are welcome Thank you in advaance:)
  5. We are working on a .NET 1.1 and we are required to restrict access to a webservice over HTTP and allow access only over HTTPS.We found that this can be done via Source code implementation i.e. to check the incoming request is on Secure communication or not? Any other suggestions.:rolleyes:
  6. kool man .:) If you got video tutorials.Plz forward them to my emailId sureshcd10@yahoo.com :p
  7. I am scanning a news paper. I am displaying this scanned image on my webpage. When my user points his mouse on each news colums should get highlighted. And when he clicks a window should popup displaying a detailed view of that particular news Item. How I can do this using asp.net and C# ?:confused: Give me your ideas & Suggestions Thank u all in advance
  8. See code below string str = "APR 12.34% APR"; string aDecimal; aDecimal = Decimal.Parse(str, System.Globalization.NumberStyles.Any).ToString(); Response.Write(aDecimal); Here I am trying to retrieve the numeric part from the string str ? and is not working. Is there any other idea to achieve the expected result Thank u in advance
  9. I solved this issue by using the following. StringBuilder sb = new StringBuilder(argstring); sb.Insert(4,"-"); sb.Insert(9,"-"); sb.Insert(14,"-"); return sb.ToString; Thank u all for their effort
  10. I got Account Number=4549163506238472 .This Account number I want to get into format 4549-1635-0623-8472 .How can I do this ?Please help me. I am using C# Thanks in Advance
  11. Is there any advantage/disadvantage in declaring Dim ab as String as against Dim ab as System.String Please let me know your comments regarding this Thank u all in advance :p
  12. Yes I got Answer System.Environment.Version.ToString(); This will give the version number Thank u all for their effort. Regards ABHILASH M.K
  13. Is there a way to format the numbers displayed in the datatable. Suppose I am reading a 16digit number from from Excelsheet and getting this on to a Datatable for binding on to a Datagrid. But when that 16 digit number gets into DataTable say (1234567890123450 ) will automatically gets formatted as 1.23457E+15. But I want to retrieve the number 1234567890123450 as 1234567890123450 itself not as 1.23457E+15 Any help will be greatly appreciated :confused: :confused:
  14. I wanted to programmatically create SqlServer JobSchedule The job is to copy data from a particular table in one Database to another table in another DataBase User should be able to Schedule/modify Date and Time on which a job is to be executed is to be configured through a UI Screen (WebForm.aspx) I am using VSStudion2003 ,ASP.net with VB.net with SQL2000 as database :confused: :confused:
  15. Is there any means of retrieving the Structure of a Table using SQL query That is I want to retrieve the FieldNames,and its corresponding DataTypes from my Table ?Any idea???? :confused:
  16. We are using some POPUP windows in our webform(.aspx ) When the user clicks on a button say "ADD NEW " button will open a popup Child window where user can type and save records. Now my problem is if the users browserSetting prevent POPUP How can I alert the user that a popup window is blocked and How he can Enable that POPUP Window.So I wanted to detect whether browser settings prevents POPUP window and if so I want to give instructions to the User to enable it. Or Do you think it a good idea to use popup windows ?Is there any good ideas to Solve these kind of problems :confused: Thank you very much for listening to me
  17. I got the following reply for this question from some other groups I got the following reply for this question from some other groups : " This scenario depends if the servers are within the same LAN or not. If they are, I would probably use .NET Remoting to transfer objects between tiers. Your Data layer would remote to your application layer and your application layer would remote to your web server. No remoting would be necessary on the webserver layer objects. if the servers are outside the local lan, like on the internet, then you would use WebServices to accomplish this. " Thank u for all your help
  18. Thank u for your help :p
  19. We can create transactions at the -->codebehind level by making use of SqlTransaction class or in then -->StoredProcedure level so that we can create save point and Rollback a transaction whenever a transaction fails Now my question is is there any specific advantage/disadvantage in using Sqltransaction at the Codebehind against using the same at the storedProcedure level. I am using C# to develop aspx pages and SQLServer2000 as database Which one is the best option and WHy ? :confused: Thank u all in advance
  20. while visiting some sites I can see a lock symbol on the bottom of the browser window indicating that it is using a trusted site. How can I display with my .aspx pages.?
  21. Yes, if I am using remoting
  22. I am using a com dll developed in vb with the .net class .In one machine i can run the .net class by giving the reference to the com dll . But if i copy the same class to other machine and trying to run compile the class it is giving System.Runtime.ComException. OS -->XP DotNEt-->VS.net2003
  23. I have Three Servers 1-->WebServer 2-->Application Server 3-->DatabaseServer Now I want to store all my .aspx pages on to (1)WebServer dll assemblies on to the ApplicationServer and DataBase to the Database Server What I should do to make this happen ?How and where I make configure so that the pages detect assemblies (dlls) from the Application Server. Can any one help me ?
  24. Can anyone tell me if there is any performance issues/advantages /disadvantages in using QueryString when compared to Session ?
  25. I am using WindowsXP Professional
×
×
  • Create New...