- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
19 Posted Topics
Good Day, How to Notify any user or group by email when new ticket opened and closed. btw.. my application web based (ticketing system). any samples please. i searched but didnt get any sample.. thank you
Anyone have sample web based Inventory tracking system, language c# .. any site? searched google but couldn't find one. thanks
Here my code : [ICODE] protected override void OnPreInit(EventArgs e) { base.OnPreInit(e); switch (Session["role"].ToString()) { case "X": MasterPageFile = "X.Master"; break; case "SS": MasterPageFile = "SS.Master"; break; default: MasterPageFile = "XS.Master"; break; } if (Session["role"].ToString() == "SS") { btnSearch.Enabled = true; rbSerial.Checked = false; rbName.Checked = false; } else { …
[ICODE]protected override void OnPreInit(EventArgs e) { base.OnPreInit(e); switch (Session["role"].ToString()) { case "X": MasterPageFile = "X.Master"; break; case "SS": MasterPageFile = "SS.Master"; break; default: MasterPageFile = "XS.Master"; break; } if (Session["role"].ToString() == "SS") { btnSearch.Enabled = true; rbSerial.Checked = false; rbName.Checked = false; } else { btnSearch.Enabled = false; } } …
Any sample C#? i have googled but couldn't the correct one Particular role log in.. they can readonly the page.
Hi everyone, i already build web page, now i need to add one more user and the user based authorization to view only the website. any samples please.. thank you
Whenever update the values in the text box.. its not submitted and update in database. Thanks and regards Here is my code : namespace sys.System { public partial class spareedit : System.Web.UI.Page { SqlConnection dbCon = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["sqlServer2"].ConnectionString); protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { dbCon.Open(); SqlCommand …
HI All, Whenever user clicked the check box and used the things... its should be updated the current column. Here is table table 1 2 table 2(current value) 1 = becaused one of the items been used for work. Could anyone please give me some example..
Hi everyone, ALTER TABLE preventiveRecord ADD Verifiedbymanager BIT NOT NULL CONSTRAINT preventive_verify DEFAULT 0 WITH VALUES ALTER TABLE preventiveRecord ADD Verifiedbysupervisor BIT NOT NULL CONSTRAINT preventive_verify DEFAULT 0 WITH VALUES SELECT [ID] ,[Date_Done] ,[Date_Due] ,[SME] ,[Status] ,[History_ID] ,[Remark] ,[Verifiedbysupervisor] ,[Verifiedbymanager] FROM [demo].[dbo].[preventiveRecord] Here is my query : from d in …
Hi, Hare is the Example: Table1 Table2 Edit button = to edit the value at Table2 3 blank Table1(as per contract we have 3 spare things) Table2(Current stock of things means if stock have 3 out of 2 means we have to edit to 2 in the table 2) ANy …
Good Everyone. I have added 2 more column for supervisor and manager for verified.Once engineer done the work he will select done from dropdown column.supervisor verified engineer's "done" work. ALTER TABLE [dbo].[Record] ADD CONSTRAINT [verify] DEFAULT ((0)) FOR [VerifiedbySupervisor] ALTER TABLE [dbo].[Record] ADD CONSTRAINT [mgr] DEFAULT ((0)) FOR [VerifiedbyManager] GO …
Hi, I have three roles engineer,supuvisor and manager for my website and I have three master pages engineer.master , supervisor.master and mgr.master and i have some specific aspx pages for engineer,supervisor and manager. I want to use engineer.master page for an aspx page if engineer user is logged in and …
Hi everyone, I wanted to add 3 Pages.. If Supervisor login will direct to supersior page, if engineer login will direct to engineer's page and so on. Here is the code: protected override void OnPreInit(EventArgs e) { base.OnPreInit(e); Page.MasterPageFile = (Session["role"].ToString() == "ME") ? "ME.Master" : "ME.Master"; } protected List<preventiveRecord> …
Does anyone have this software?anyone knw where to download this software..for the free only have trial version.. i needed urgently to do example questions for 70-511 exam. Thanks everyone
Hi everyone.. Problem: no space between each tables.Could anyone please advice.. solutions: here is the coding: protected void btnShow_Click(object sender, EventArgs e) { if (ddlMonth.Text != "") {d.Controls.Clear(); DateTime start = DateTime.Parse(ddlMonth.SelectedValue); DateTime end = start.AddMonths(1).Subtract(new TimeSpan(1, 0, 0, 0)); switch (ddlRecurr.Text) { #region Daily case "Daily":{ foreach (preventive p …
Hi Everyone, i've designed login page in photoshop cs3. how to convert to coding? could anyone guide or have any link regarding this. Thanks and regards.
Good Day Everyone.. i have two tables..how to read from one table1 to table2.. example.. Table1 with thousand over records various types of recurrance and due pattern. where ID = History_ID Table 1 ID Reccurance Duepattern 1 Monthly 10 2 Yearly 25 3 Monthly 15 4 Weekly 5 yearly 14 …
Good Day Everyone.. since i have two tables..how to read from one table1 to table2.. example..Table1 with thousand over records various types of recurrance and due pattern [CODE]table1 ID Reccurance Duepattern 1 Monthly 10 2 Yearly 25 3 Monthly 15 4 Weekly [/CODE] output must b like this in table2 …
Good Day Everyone.. Table doc1 ID=1 Reccurence = "Monthly" DuePatten = "26" Table doc2 History_ID = Date_Due = table doc2, column Date_Due must read the data from ID, Recurrance and Duepattern for generate date_due. output table doc2 must be generate like per below : History_ID Date_Due 1 26/1/2011 1 26/2/2011 …
The End.
uva1102