Jump to content
Xtreme .Net Talk

bungpeng

Avatar/Signature
  • Posts

    910
  • Joined

  • Last visited

3 Followers

About bungpeng

  • Birthday 01/04/1976

Personal Information

  • Occupation
    R&D Unit Head
  • Visual Studio .NET Version
    Visual Studio 2003
  • .NET Preferred Language
    VB.NET

bungpeng's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I can retrieve data from other webpage, but how to read data from other webpage if user login require?
  2. Service pack for visual studio .net? or .net framework?
  3. In .net framework 1.1, I can just upload my DLL file & edited aspx only. But in .net framework 2.0, after I publish web site, I need to upload my DLLs (there are few dlls) and all my website aspx? Any alternate solution for this?
  4. I can retrieve data from server using ajax concept, but when I want to do something like 'online update', so I use javascript 'setTimeout' to make it 'refresh' the data, but I get error message 'out of memory.." May I know what is the problem? anyone help?
  5. No, I mean what if I create 2 similar classes and object refer to one of it dynamically?
  6. What if in other case, it does not have something like .IDbConnection object? It is not possible to create 'object' variable and assign object to it later?
  7. This code work fine in 1.1 but not 2.0. Any help? Thank you. Dim Con As Object Dim sDB As String = "SQL" If sDB = "SQL" Then Con = New System.Data.SqlClient.SqlConnection Else Con = New System.Data.OleDb.OleDbConnection End If Con.Open("xxx") I get this error: System.MissingMemberException was unhandled by user code Message="Overload resolution failed because no accessible 'Open' accepts this number of arguments." Source="Microsoft.VisualBasic" StackTrace: at Microsoft.VisualBasic.CompilerServices.OverloadResolution.ResolveOverloadedCall(String MethodName, MemberInfo[] Members, Object[] Arguments, String[] ArgumentNames, Type[] TypeArguments, BindingFlags LookupFlags, Boolean ReportErrors, ResolutionFailure& Failure) at Microsoft.VisualBasic.CompilerServices.NewLateBinding.ResolveCall(Container BaseReference, String MethodName, MemberInfo[] Members, Object[] Arguments, String[] ArgumentNames, Type[] TypeArguments, BindingFlags LookupFlags, Boolean ReportErrors, ResolutionFailure& Failure) at Microsoft.VisualBasic.CompilerServices.NewLateBinding.CallMethod(Container BaseReference, String MethodName, Object[] Arguments, String[] ArgumentNames, Type[] TypeArguments, Boolean[] CopyBack, BindingFlags InvocationFlags, Boolean ReportErrors, ResolutionFailure& Failure) at Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateCall(Object Instance, Type Type, String MemberName, Object[] Arguments, String[] ArgumentNames, Type[] TypeArguments, Boolean[] CopyBack, Boolean IgnoreReturn) at _Default.Page_Load(Object sender, EventArgs e) in C:\Documents and Settings\bpchia\My Documents\Visual Studio 2005\WebSites\WebSite1\Default.aspx.vb:line 16 at System.Web.UI.Control.OnLoad(EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
  8. Overload resolution failed... (Convert from 1.1 to 2.0) sorry, wrong post
  9. I am writing a web application (ASP.NET). I using crystal report feature provided by VS.NET to produce my letter, but user need to export to PDF before printing. But the problem is, when user want to print a range of letters, the alignment will jump a bit from 1 page to 2 page, it means the 10th page, the page totally cannot use... May I know how to solve this problem? This is crystal report problem or PDF? or ASP.NET problem?
  10. The code is simple and it work fine in my development machine. But when I upload to hosting server, then unable to clear the cookies. Dim obj As HttpCookie = Request.Cookies("aaa") If Not obj Is Nothing Then obj.Expires = DateTime.Now.AddDays(-7) Response.Cookies.Add(obj) End If Any posibility of it? I really can't understand. Will the OS setting affect it?
  11. Since not every client install adobe acrobat reader, so it is not a perfect solution. Although i am also using this method...
  12. You can do it this way: If password field blank, then password remain no change. Otherwise, update the password.
  13. You are welcome! You are from Malaysia too? nice to meet u.
  14. I think it is .net security control. I also face the same, but i don't think it is problem for me. Because normally change password is another screen called: change password. To change user profile information, you should not allow them to change password there.
×
×
  • Create New...