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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
2

2208

@2208
About
Posts
26
Topics
18
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • update panel in content page works just on first time click?
    2 2208

    i have try this but same problem and error is Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.2; .NET4.0C; .NET4.0E) Timestamp: Mon, 26 Jul 2010 10:19:37 UTC Message: Unknown runtime error Line: 345 Char: 9 Code: 0 URI: http://localhost:4099/ScriptResource.axd?d=9I1lWtAvVqWN1mD9glifsmEaMOiOLiTKjnBQwe4NQFLjuZpRoCN\_LRiI-oQlHO1ffCWMttDUGTSGUEn\_n-0ZNQXbP7japojTJ\_LVrzCwdLJYzGHv0-QESNieL9JuFlAo0&t=ffffffffec2d9970 Message: '__EVENTTARGET' is null or not an object Line: 482 Char: 9 Code: 0 URI: http://localhost:4099/ScriptResource.axd?d=9I1lWtAvVqWN1mD9glifsmEaMOiOLiTKjnBQwe4NQFLjuZpRoCN\_LRiI-oQlHO1ffCWMttDUGTSGUEn\_n-0ZNQXbP7japojTJ\_LVrzCwdLJYzGHv0-QESNieL9JuFlAo0&t=ffffffffec2d9970 Message: '__EVENTTARGET' is null or not an object Line: 482 Char: 9 Code: 0 URI: http://localhost:4099/ScriptResource.axd?d=9I1lWtAvVqWN1mD9glifsmEaMOiOLiTKjnBQwe4NQFLjuZpRoCN\_LRiI-oQlHO1ffCWMttDUGTSGUEn\_n-0ZNQXbP7japojTJ\_LVrzCwdLJYzGHv0-QESNieL9JuFlAo0&t=ffffffffec2d9970 Message: '__EVENTTARGET' is null or not an object Line: 482 Char: 9 Code: 0 URI: http://localhost:4099/ScriptResource.axd?d=9I1lWtAvVqWN1mD9glifsmEaMOiOLiTKjnBQwe4NQFLjuZpRoCN\_LRiI-oQlHO1ffCWMttDUGTSGUEn\_n-0ZNQXbP7japojTJ\_LVrzCwdLJYzGHv0-QESNieL9JuFlAo0&t=ffffffffec2d9970 Message: '__EVENTTARGET' is null or not an object Line: 482 Char: 9 Code: 0 URI: http://localhost:4099/ScriptResource.axd?d=9I1lWtAvVqWN1mD9glifsmEaMOiOLiTKjnBQwe4NQFLjuZpRoCN\_LRiI-oQlHO1ffCWMttDUGTSGUEn\_n-0ZNQXbP7japojTJ\_LVrzCwdLJYzGHv0-QESNieL9JuFlAo0&t=ffffffffec2d9970 Message: '__EVENTTARGET' is null or not an object Line: 482 Char: 9 Code: 0 URI: http://localhost:4099/ScriptResource.axd?d=9I1lWtAvVqWN1mD9glifsmEaMOiOLiTKjnBQwe4NQFLjuZpRoCN\_LRiI-oQlHO1ffCWMttDUGTSGUEn\_n-0ZNQXbP7japojTJ\_LVrzCwdLJYzGHv0-QESNieL9JuFlAo0&t=ffffffffec2d9970 Message: '__EVENTTARGET' is null or not an object Line: 482 Char: 9 Code: 0 URI: http://localhost:4099/ScriptResource.axd?d=9I1lWtAvVqWN1mD9glifsmEaMOiOLiTKjnBQwe4NQFLjuZpRoCN\_LRiI-oQlHO1ffCWMttDUGTSGUEn\_n-0ZNQXbP7japojTJ\_LVrzCwdLJYzGHv0-QESNieL9JuFlAo0&t=ffffffffec2d9970 how i can solve this

    C# sysadmin tools help question announcement

  • update panel in content page works just on first time click?
    2 2208

    i want to use ajax in content page i have script manager on master page in content page i have following code <asp:Content ID="Content2" ContentPlaceHolderID="MainContents" runat="server" EnableViewState="true"> <asp:ScriptManagerProxy ID="ScriptManagerProxy1" runat="server"> </asp:ScriptManagerProxy> <asp:CheckBox ID="CheckBox1" runat="server" OnCheckedChanged ="checkchange" AutoPostBack ="true"/> <asp:UpdatePanel ID="updatePnl" runat="server" UpdateMode="Conditional"> <ContentTemplate> <asp:TextBox ID="TextBox1" runat="server" visible="false" ></asp:TextBox> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label> </ContentTemplate> <Triggers> <asp:AsyncPostBackTrigger ControlID="CheckBox1" /> </Triggers> </asp:UpdatePanel> </asp:Content> on server side i have following protected void checkchange(object sender, EventArgs e) { if (CheckBox1.Checked) { TextBox1.Visible = true; Label1.Text = Label1.Text + "HEllo"; } else { TextBox1.Visible = false; Label1.Text = Label1.Text + "bye"; } } problem is checkchange call just once if i click towice on check box it does not works

    C# sysadmin tools help question announcement

  • how invisible text field show on click of check box without page post back:?
    2 2208

    ok if i am using update panel and set check box auto post back true still check box is not working how it will work?? asp code <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <td align="left" colspan="4"><asp:CheckBox ID="CheckBox1" runat="server" AutoPostBack="True" oncheckedchanged="CheckBox1_CheckedChanged1" /> <br /> <asp:TextBox ID="TextBox1" runat="server" visible ="false"></asp:TextBox> <br /> </ContentTemplate> </asp:UpdatePanel> server side protected void CheckBox1_CheckedChanged1(object sender, EventArgs e) { if (CheckBox1.Checked==true) { TextBox1.Visible = true; } if (CheckBox1.Checked==false) { TextBox1.Visible = false; } } }

    C# help question

  • how invisible text field show on click of check box without page post back:?
    2 2208

    i have a text box which has set visible false i want as when as i click on check box then that text field should be enable without post-back (or reload page) how is that possible please help me..

    C# help question

  • change cell color of gird view on click event of CELL
    2 2208

    using JavaScript i want to change color of cell of asp.net grid view i want once cell click by user it should became red and if user click same cell again it should became white how is that possible plz guide me Regards

    C# csharp javascript css asp-net tutorial

  • script to copy web page contents into text file
    2 2208

    i want to copy web page contents into a text file or excel using any script how it will possible please guide me Regards

    Visual Basic tools tutorial

  • how i can capture that print command is generating
    2 2208

    this is defining to check printers and then commands i want to trace print commmand as when as user want to send print my work should start

    C# help

  • how i can capture that print command is generating
    2 2208

    i want to make a software that should run as service and as when as user send any type of print my software dialogs should be work so please help me how i can capture print command for my software Regards

    C# help

  • Zoom and paan effect in presentation
    2 2208

    i want to create an presentation of Surveys analysis i have map .jpgs graphs and analysis reports i want to show zoom and pan effects for map i used pptplex for this purpose but in pptplex i can not show animation i want to user should enable to zoom map and move map, if i use power point animation effect i have to create a lot of pictures and still not accurate effect please any one can guide me how i can achieve this task easily? any tool or any technique which i can use with Microsoft power point Regards

    IT & Infrastructure tutorial question

  • get encrypted passwords from sql using encryption string
    2 2208

    i have database of sql in User table there is field which contain encrypted password this database is using with an application. so i know the string using which these passwords are encrypt so please can any one help me how can i get that passwords. Regrads

    Database database security help question

  • AspDotNetStoreFront Skinning
    2 2208

    i have read XSLT but still unable to decide how i should start and how should take first step to change skin. i am trying to change skin of home page and i am working with template.aspx and style.css which are in skin folder please can you tell me few tips or steps Thanks Best Regards

    ASP.NET html css tutorial

  • AspDotNetStoreFront Skinning
    2 2208

    i am very new in aspdotnetstorefront and want to change skin of storfront from manual of aspdotnetstorefront i try to follow steps to change skin but i have to face many problems and still unable to change skin please guide me how i can change skin i have html and css pages Regards

    ASP.NET html css tutorial

  • software to save webpages as ms word document
    2 2208

    is there any software which save any webpage into MS-word document with all formattiong and pictures and auto fit into standerd page size?

    IT & Infrastructure question

  • access other system drive on LAN in .net
    2 2208

    actualy i want to update files on other system as when as i edit on my system ( mean place my files on other system) but i cannt share folder of other system and i am working in workgroup environment and is it possible using http protocol if yes then guid me plz

    modified on Saturday, October 17, 2009 1:17 AM

    C# csharp help

  • access other system drive on LAN in .net
    2 2208

    i can not use domain name system i want to do it in workgroup enviornment ????

    C# csharp help

  • access other system drive on LAN in .net
    2 2208

    \\machineName\C$\someFolder\someOtherFolder\filename.ext. if i will use this then other systems guest service creats problem is there any API or method to accessfiles on other sytem by providing administrator username and password for example Access(mashinename+filesPath, adminUserName, adminPassword) ??

    C# csharp help

  • access other system drive on LAN in .net
    2 2208

    i want to place files from my system on other system by using .net source code i don't want share folder on other system i want to do this diagrammatically how is that possible please help me

    C# csharp help

  • integration of directories of server and client
    2 2208

    I WANT TO Integrate directories of server n client i want from client directories data should automatically update in server folder as when as client do edit or create anything please help me how this is possible or tell me any software for this

    IT & Infrastructure sysadmin help announcement

  • integration of directories of server and client
    2 2208

    I WANT TO Integrate directories of server n client i want from client directories data should automatically update in server folder as when as client do edit or create anything plz help me how this is possible or tell me any software for this

    IT & Infrastructure sysadmin help announcement

  • crystall reports in visual studio 2008
    2 2208

    i have crystall reports which are developed with version 10 these reports are visible in visual studio 2005 but not visible in visual studio 2008 and gives error to create control is there any solution plz help me thanks

    .NET (Core and Framework) help csharp visual-studio announcement
  • Login

  • Don't have an account? Register

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