Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
_

_tasleem

@_tasleem
About
Posts
381
Topics
226
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • prevent post back when menu item header is clicked
    _ _tasleem

    hi all, i am using asp.net menu control on mysite,menus are two level, but level-1 menus don't have links associated with them, below is scenario explained. Administrator((level-1) when clicked,page is posted back which i don't want) ---click1 (level-2) ---click2 (level-2) when level1 item is clicked page is posted back which i dont want as it dont have any target url or link

    Regards. Tasleem Arif

    ASP.NET csharp asp-net

  • custom repeator with previous next button added at footer
    _ _tasleem

    i am making a custom repeator, not using them in webpages

    Regards. Tasleem Arif

    ASP.NET docker help

  • custom repeator with previous next button added at footer
    _ _tasleem

    hi all, i want to customize the repeator control with paging,with previous and next button added at footer of repeator, what i want to when repeator control added, then it should add the add the "next", previous button at footer of repeator by default. i have tried paging using pagedatasource class, it works, and added implemented the itemplate for template with previous next button as well. here is samples of code WebCustomControl1 : Repeater, ITemplate over ride oninit and do this protected override void OnInit(EventArgs e) { this.FooterTemplate = new WebCustomControl1(); base.OnInit(e); } implemented interface public void InstantiateIn(Control container) { code for previous and next buttons}. now the issue is instead of appearing at the bottom previous next buttons appears at the top of repeator,and i want them to appear at the bottom in footer section of template,all doing in custom control. previous"

    Regards. Tasleem Arif

    ASP.NET docker help

  • Downloading a File
    _ _tasleem

    if this thing did not work to u then use, api downloadulrtofile api.

    Regards. Tasleem Arif

    Mobile csharp question

  • Need to pull a date from a web site.
    _ _tasleem

    as N a v a n e e t h posted, use regular expresssion, there is software on code project named "EXPRESSo" i think it will be helpful for you to build the regular expressions. :)

    Regards. Tasleem Arif

    C# csharp help learning

  • Pass Parameter to Activex using HTML
    _ _tasleem

    hi all i have made a activex controll in vb6 and here is code for its properties which i want to assign value using the Public Property Let WriteCardId(Net8ServiceIn As String) WriteCardId = Net8ServiceIn MsgBox "Card Id Property " + Net8ServiceIn PropertyChanged "WriteCardId" End Property Public Property Get WriteCardId() As String WriteCardId = WriteCardId MsgBox "Card Id Property " + WriteCardId End Property Public Property Set WriteCardId(Net8ServiceIn As Object) WriteCardId = CStr(Net8ServiceIn) MsgBox "Card Id Property " + WriteCardId PropertyChanged "WriteCardId" End Property Private Sub UserControl_ReadProperties(PropBag As PropertyBag) WriteCardId = PropBag.ReadProperty("WriteCardId", "111") MsgBox "read Properties changed" End Sub when i access this from html page using Object Tag Param name="WriteCardId" value="SCOTT" it does not pass values to activex as no Messagebox is shown,,tags < and > are added on param but unable to add on this editor.

    Regards. Tasleem Arif

    COM html com

  • problem with printing in data from text box
    _ _tasleem

    hi all, i have textbox(multiline which shows terms and condtions) and i want to print the data from that text box using java script. problem is this that i am able to print but data that is comming inside the text box is not formated i mean space and new lines are not considered, as a result it print whole data in one -line what i want to print the data from text box as it shown in text box, i mean line and spaces as well which is not shown right now.

    Regards. Tasleem Arif

    ASP.NET java tools help

  • cookie generation and locale/language settings
    _ _tasleem

    hi all, i have strange issue and it may be dumb question, i am using below code in asp.net 1.1 to generate the cookie it is generated on some computer using locale(En-us),but cookie is not generated on some computers which have danish locale. My question "is cookie generation depend upon the locale/Regional setting/Language" below is the code to generate string strCVal="2001" + "@ENG"; for(int i=0; i<Request.Cookies.Count; i++){ Request.Cookies[i].Expires=DateTime.Now.AddYears(-30); } try { Response.Cookies["SCID"].Expires=DateTime.Now.AddDays(-3); } catch{} HttpCookie aCookie = new HttpCookie("SCID"); aCookie.Values[strCVal] = strCVal; aCookie.Expires = DateTime.Now.AddMinutes(5); Response.Cookies.Add(aCookie); that code does not throw any exception as well.

    Regards. Tasleem Arif

    ASP.NET csharp asp-net help question

  • URL Redirection/Re writting/Change browser bar value
    _ _tasleem

    hi all, i have made asp.net application in C#. suppose my site adress is "abc.com" I have pages related to admin and user but there are no folder, there are internal page links on my site, like login link, when login link is clicked within site user is redirected to "abc.com/login.aspx" and this appear as it is on Ie browser bar, what i want is it should "abc.com/admin/login.aspx" or "abc.com" (change browser bar adress and use httpcontext.rewritepath() method), There more similar situations like this but that is simplest, i know other solution of that instead of login.aspx, link href should be "/admin/login.aspx" but i dont want this solution and use httpcontext.Rewritepath() method. what i am intrested is href should be "abc.com/login.aspx" but afer clicking on link and on post back Browser bar should display "abc.com/admin/login.aspx" or only "abc.com", i want change values from browser bar. i hope you understand this problem i am doing this asp.net C#.

    Regards. Tasleem Arif

    ASP.NET csharp asp-net com help

  • cookie issue
    _ _tasleem

    i want these cookies in cookie folder, bcos its important for me.

    Regards. Tasleem Arif

    ASP.NET help question

  • cookie issue
    _ _tasleem

    can u explain in detail. this cookie is generated in some system in IE7 and on some systems it is not generated. here is the code of that HttpCookie aCookie = new HttpCookie("SCID"); aCookie.Values[strCVal] = strCVal; aCookie.Expires = DateTime.Now.AddMinutes(5); Response.Cookies.Add(aCookie);

    Regards. Tasleem Arif

    ASP.NET help question

  • cookie issue
    _ _tasleem

    hi all i have a strange issue,my site save cookies when someone visit site and click on a specific button, it was working fine on IE6 and IE7, now it works fine on IE7 but not IE6, dont know what the issue is not exception is raised as well, but still cookie is not saved when i view on cookies folders,is that need some thing with user privilages or anything else dont know what is missing i have checked the privacy settings but still now working in IE6 even i have set on level to accept all cookies

    Regards. Tasleem Arif

    ASP.NET help question

  • select source is vanished when two menus are displayed from one sitemap,
    _ _tasleem

    Menus are actually saved in sitemap, and top level menus are populated using sitemap datasource while left side as populated using the manully getting the url names from sitemap.

    Regards. Tasleem Arif

    ASP.NET csharp asp-net

  • select source is vanished when two menus are displayed from one sitemap,
    _ _tasleem

    hi thanks for ur reply, yes both are on same page,

    Regards. Tasleem Arif

    ASP.NET csharp asp-net

  • select source is vanished when two menus are displayed from one sitemap,
    _ _tasleem

    hi all,in my asp.net application i have two menus from one sitemap,First menu is level 0 level shown at top/header of page. and second is at left side. when i select/click on the left side menu then the selected menu at top of page is hided/vanished. which i dont want. i want to select both top level menu and left side menu as well but it is currently selecing one at time not both.

    Regards. Tasleem Arif

    ASP.NET csharp asp-net

  • WebParts..
    _ _tasleem

    Is that is exception from the code? and have you tried to connect that server using sqlserver client/SQl Express? or during connection network may be disconnected.

    Regards. Tasleem Arif

    C# sysadmin help database sql-server

  • http port listening using sockets.
    _ _tasleem

    hi i want to listen on http port, or i want to make a socket server that will listen on http port and get the data, but when i use socket bind method then this exception is raised "Only one usage of each socket address (protocol/network address/port) is normally permitted" can u plz help me how to do that i mean get the data from http port using sockets.

    Regards. Tasleem Arif

    C# sysadmin help tutorial

  • calling one winform from another winform problem
    _ _tasleem

    hi all, i have made winform application using vs 2005,when i call one form from another form then error is displayed that undeclared class member, both classes have same namespace, i have compiled program with /clr option but still gives error when i declare the object of class.

    Regards. Tasleem Arif

    Managed C++/CLI help dotnet visual-studio

  • Make a new image from part of image like paint brush does
    _ _tasleem

    thanks it did worked

    Regards. Tasleem Arif

    C# tutorial

  • Make a new image from part of image like paint brush does
    _ _tasleem

    it creates the new image and resize it but,i want to create the new image from part of image not resize orignal image.

    Regards. Tasleem Arif

    C# tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups