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
L

lehya

@lehya
About
Posts
40
Topics
27
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • .dll ? A solution file not present
    L lehya

    Hello..I have been taken on a project where entire website is launched as a asp.net project with vb language. When i was given ftp access, i could only find all .aspx files and only few of them had coding files on ftp site. Its compiled .dll and .pdb are present in bin. Now they want me to make some modifications to the site. But when i downloaded all the files present on ftp of that site, i found some class files missing as well there is no solution file to open up the project in visual studio project. Now is there a way that i can work on this project to make small changes to the website without a solution file and few class files missing..so that i can recompile the project and put that .dll into ftp site..hope you understood my problem..

    ASP.NET csharp asp-net visual-studio help question

  • SQLServer expiration date
    L lehya

    When I try to connect to SQLServer..It gives me an error saying "Connection Failed.Check with Registration Properties".. My SqlServer Service Manager doesnt start. I hope its expiry date is on..Is there a way that i can run it as it was before..Please help me..

    Database help

  • iframe -- URGENT
    L lehya

    I have an iframe that takes its src from another .aspx page(say, chatmessage.aspx). Chatmessage.aspx is filled in runtime making its .aspx page increase step by step.... The problem is, when i call this chatmessage.aspx from iframe that resides on another page(say Chatwindow.aspx), iframe focus is not getting set to last text. i.e. the focus is automatically set to the start of the page in iframe rather than ending of the page.....Can someone help..Urgent!!!!

    ASP.NET help tutorial

  • HTML coding
    L lehya

    Hello is there a way that the controls on my aspx page understand the html code and display accordingly...example: If a textbox is there..I press on button named 'B'.. then contents in textbox become Bold... I.e.the textbox should be in a state to handle html coding just like a html browser..if we enter Hello textbox field should show Hello in bold letters...instead of all that crap like Hello Is there a way for it

    ASP.NET html tutorial

  • New to XML
    L lehya

    Thanks buddy...Sounds like it works..But reading everything and writing into a temporary file...saving it as a new file..oh this sounds too hard..but i will try

    XML / XSL design sysadmin xml help question

  • New to XML
    L lehya

    I have a page with data retrieving from user: Name, landline no, Question to ask and Timings..Once i click on button of this page, say callback.aspx, it will generate a xml file automatically with a file name userinfo.xml Now i try to read this file in another .aspx page say read.aspx from userinfo.xml...Everything is working fine..except for.. If another user enters info in callback and submits. And when i check it from read.aspx or userinfo.xml the previous data is lost and the new data is written...Is there any possibility that dynamically data can be appended to userinfo.xml Please help..the following is the code in callback.aspx string xmlFile = Server.MapPath("userInfo.xml"); XmlTextWriter writer = new XmlTextWriter(xmlFile, Encoding.UTF8); //start writing writer.WriteStartDocument(); writer.WriteComment("Posted on @" + DateTime.Now.ToString()); writer.WriteStartElement("UI"); //creating the element writer.WriteElementString("name", sname); writer.WriteElementString("landline",slandline); writer.WriteElementString("question",squestion); writer.WriteElementString("time",stime); writer.WriteElementString("Date",DateTime.Now.ToString()); writer.WriteEndElement(); writer.WriteEndDocument(); writer.Close();

    XML / XSL design sysadmin xml help question

  • TripleDES Encrption -key length
    L lehya

    Friends.. I am using a password of length 10 varchar in SQL. The problem is i am using Triple DES encryption and inserting the encrypted string into the database...I donno which datatype i can use and how much length i can allow for this datatype...Will varchar(40) do for a length of 10 chars...? Please look into the matter.

    ASP.NET database security help question

  • TripleDESCryptoServiceProvider - TripleDES encryption
    L lehya

    Hey I am using TripleDES encryption 192bit key algorithm to encrypt my data...Now i have got a doubt like if my password datatype length is only 10 chars. Then how much space or length do i need to allocate in database table for this field when i am using 192bit alogrithm... Please help.

    Database database algorithms security help

  • dropdownlist loads photos in iframe [modified]
    L lehya

    I have a dropdownlist and an iframe in a table on .aspx page.. I am trying to select an photoname in the dropdownlist that once selected will make iframe get loaded with that relevant photo which is in some folder not in the database... here comes the code of it: Abhinaysree Ali -- modified at 10:14 Monday 31st July, 2006

    ASP.NET database

  • SqlServer evaluation period expired
    L lehya

    hello friends.. I had Ms Sql Server 2000 installed on Xp machine..suddenly when i observed server's icon on taskbar.it stopped working..when i tried to start it..it couldnt..log file says server evaluation period expired..Is there any way to make it work..or start Sql server on my machine now... plz help

    .NET (Core and Framework) database sql-server sysadmin help

  • SqlServer evaluation period expired
    L lehya

    Hello friends.. Is there any other alternative to start SqlServer..I have MS Sql Server 2000 installed on a XP machine. I downloaded it from someone's cd..now it says the time is expired..is there anyway to make it work once again..

    Database database sql-server sysadmin

  • changing from asp to asp.net
    L lehya

    Hey Jesse... Thanks for whatever u told me...I have been trying to learn the differences between ASP and ASP.NET , but your google search didnt really was of use to me..Theoretically it continued well for session state differences etc..but not into the depth of the code... Anyways, chatprocessing.aspx and the rest was all fine Jesse and the rest i have done is going on well with other pages..But i had a small doubt which would make everyone get into chaos..So i just posted the coding and asked to change it into .aspx file... The thing is when we are changing this type of file we are just changing a few tags only..but the statements like.... <%=formatAll(roomID)%>.....i had a doubt with them and so i asked the help...anyway thanks buddy..I found this site to be useful and so i just made it out a point to know it from a few professionals too about how can we do it...I hope u can solve some of our beginner level problems too...

    ASP.NET csharp javascript asp-net

  • changing from asp to asp.net
    L lehya

    Hey i have got an asp file with following code: <%@LANGUAGE="JavaScript"%> <% var roomID = Request("RoomID"); %> Messages place <%=formatAll(roomID)%> Can someone please try to change this page code into asp.net

    ASP.NET csharp javascript asp-net

  • Guys n Gals...Please help me out...
    L lehya

    Hey i got a beautiful article posted by Alexander..The problem came when i downloaded the code and started working on it..Its about chat using XML and ASP....But i needed the same coding in ASP.NET..please checkout this link and tell me how to change a page information from Asp to ASP.NET...I am using C#, XML and ASP.NET for my site..Please help me with one page of translating this code for one page and i will goon with the rest buddies... http://www.codeproject.com/asp/PalaceChat.asp[^]

    ASP.NET csharp help asp-net com xml

  • can someone post me a simple chat application
    L lehya

    Please help to make a simple chat application using Asp.net C# and XML or SQLserver

    C# csharp asp-net xml help lounge

  • chat engine
    L lehya

    any free engine ?? would really help anyways

    ASP.NET security help lounge

  • chat engine
    L lehya

    Can anyone help me sending articles r suggestions in implementing a simple chat as a part of the website with authorization of the user

    ASP.NET security help lounge

  • CHAT Engine
    L lehya

    I need to create a chat engine for the website i am creating..The requirements are: authorized to members only.. once they are authorized they can enter into chat page for sending and receiving messages.. no rooms to create... everyone can see each other... the page shouldnt be refresed on a whole....Can anyone help me with coding part or suggest me some good articles about chat form...I prefer no database,no javascript except for simple html...that can provide scalability and performance...as messages pass their number -50, first 20 statements will be deleted..etc etc..

    ASP.NET javascript html database business performance

  • Server error: More than one exclusive group is not allowed
    L lehya

    I have hosted a site through some hosting site...Well...After i had uploaded the pages, it worked fine whole night..But without any changing the code or anything else also...Now all of a sudden it shows the error to be Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Security.Policy.PolicyException: More than one exclusive group is not allowed. Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace: [PolicyException: More than one exclusive group is not allowed.] System.Security.Policy.PolicyLevel.GenericResolve(Evidence evidence, Boolean& allConst) +2723202 System.Security.Policy.PolicyLevel.Resolve(Evidence evidence, Int32 count, Char[] serializedEvidence) +124 System.Security.PolicyManager.CodeGroupResolve(Evidence evidence, Boolean systemPolicy) +182 System.Security.PolicyManager.ResolveHelper(Evidence evidence) +95 System.Security.HostSecurityManager.ResolvePolicy(Evidence evidence) +32 System.Security.PolicyManager.Resolve(Evidence evidence) +72 System.Security.SecurityManager.ResolvePolicy(Evidence evidence, PermissionSet reqdPset, PermissionSet optPset, PermissionSet denyPset, PermissionSet& denied, Boolean checkExecutionPermission) +148 System.Security.SecurityManager.ResolvePolicy(Evidence evidence and much more trace is done..Can someone please tell me whether the problem is with my coding now or with webserver hosting company..so than i can ask them in detail whats wrong with my site now...

    ASP.NET help sysadmin hosting data-structures security

  • requiredfieldvalidation for 2 listboxes
    L lehya

    User needs to choose either of 2 listboxes... How to set a requiredfieldvalidator for this problem? If none of listboxes r selected, requirefieldvalidator will throw a error that none is been selected..Look into the problem!!!

    ASP.NET help tutorial question
  • Login

  • Don't have an account? Register

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