No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
Re: Hello, Your code sounds good. First, I suggest to use Cookie for LogIn Moudle in place of session. Just remove cookie when user logged out. Second, Create one Field named "Role" or "UserType" in database and insert value "Admin" during admin creation and "User" for other Users. During login Return … | |
Re: Yes it is possible but don't use Ajax.ActionLink. Keep it simple - use jQuery - then you have total control: $(function() { $('#somelink').click(function(e) { e.preventDefault(); get('/controller/action1', function(data) { $('#up').html(data); }); $.get('/controller/action2', function(data) { $('#down').html(data); }); }); }); You should use Url.Action or Url.RouteUrl to generate the URL for the AJAX … | |
Re: No. if you install IIS6 or higher in your computer it won't affect WAMP or other Servers. You can both on different different Port. You just need to deploy PHP and other Website on WAMP or XAMPP Servers which is Linux based and Deploy ASPX based .NET Framework websites on … | |
Re: Hi, there are no of definitions you can implement as your final year project. I suggest: 1) Human Resource Management System (HRMS) 2) e-Commerce (Online Shop but try to implement for any unique industry other than clothing and all. You can implement Wholesale selling also.) 3) Enterprise Resource Planning (ERP … | |
Re: Master pages allow you to create a consistent look and behavior for all the pages (or group of pages) in your web application. A master page provides a template for other pages, with shared layout and functionality. The master page defines placeholders for the content, which can be overridden by … | |
Re: **Replace this code with yours:** I think it should work cmd.Connection = conn cmd.CommandType = CommandType.StoredProcedure cmd.CommandText = ("web_usp_empData_Update") Try cmd.Parameters.AddWithValue("@id", Convert.ToInt64(Session("empID"))) cmd.Parameters.AddWithValue("@Code", Me.txtCode.Text) cmd.Parameters.AddWithValue("@Name", UCase(Me.txtName.Text)) cmd.Parameters.AddWithValue("@Address", Me.txtAddress.Text) cmd.Parameters.AddWithValue("@Tel", Me.txtTel.Text) cmd.Parameters.AddWithValue("@Hp", Me.txtHP.Text) cmd.Parameters.AddWithValue("@email", Me.txtEmail.Text) cmd.Parameters.AddWithValue("@Nric", Me.txtNRIC.Text) cmd.Parameters.AddWithValue("@Jobtitle", Me.cboJobTitle.SelectedValue) cmd.Parameters.AddWithValue("@Dept", Me.cboDepartment.SelectedValue) conn.Open() cmd.ExecuteNonQuery() cmd.Dispose() conn.Close() Response.Redirect("empVIEW.aspx") ScriptManager.RegisterStartupScript(Page, Page.GetType(), "alert", "alert('Updated!');", True) … | |
Re: If you alreay applied code in event of SelectedIndexChange for Dropdowns 2nd and 4th and both are AutoPostback then Simple disable AutoPost back in 3rd & 5th Dropdowns. if you still facing problem then please send me aspx and aspx.cs code for that page i will help you ASAP. Don't … | |
Re: If you are Beginner then I suggest you to Go and Register to: http://www.microsoftvirtualacademy.com Its microsoft academy to teach all development technologies for free by providing their experts' material and learning videos. Trust me Its excellent place to Learn & Explore even after 2 Year working experience I am learning … |
The End.