Click here to Skip to main content
15,922,894 members
Home / Discussions / C#
   

C#

 
Question[Message Deleted] Pin
Firdous24-Dec-07 0:07
Firdous24-Dec-07 0:07 
GeneralRe: What is innumerable and enumerator in c#? Pin
Pete O'Hanlon24-Dec-07 0:32
mvePete O'Hanlon24-Dec-07 0:32 
GeneralRe: What is innumerable and enumerator in c#? Pin
Vikram A Punathambekar24-Dec-07 0:59
Vikram A Punathambekar24-Dec-07 0:59 
GeneralRe: [Message Deleted] Pin
Colin Angus Mackay24-Dec-07 5:12
Colin Angus Mackay24-Dec-07 5:12 
GeneralRe: Deleted Message Pin
Paul Conrad24-Dec-07 5:53
professionalPaul Conrad24-Dec-07 5:53 
GeneralRe: Deleted Message Pin
Colin Angus Mackay24-Dec-07 6:02
Colin Angus Mackay24-Dec-07 6:02 
GeneralRe: Deleted Message Pin
Paul Conrad24-Dec-07 6:04
professionalPaul Conrad24-Dec-07 6:04 
QuestionWhat is Reflection emit and assembly evidence? Pin
Firdous24-Dec-07 0:06
Firdous24-Dec-07 0:06 
AnswerRe: What is Reflection emit and assembly evidence? Pin
Paul Conrad24-Dec-07 10:18
professionalPaul Conrad24-Dec-07 10:18 
QuestionWhat is guid and uvid? Pin
Firdous24-Dec-07 0:05
Firdous24-Dec-07 0:05 
GeneralRe: What is guid and uvid? Pin
Colin Angus Mackay24-Dec-07 5:09
Colin Angus Mackay24-Dec-07 5:09 
Question[Message Deleted] Pin
Firdous24-Dec-07 0:01
Firdous24-Dec-07 0:01 
AnswerRe: What is Object Pinning? Pin
Arjan Einbu24-Dec-07 0:19
Arjan Einbu24-Dec-07 0:19 
GeneralRe: Don't delete messages Pin
Paul Conrad24-Dec-07 5:56
professionalPaul Conrad24-Dec-07 5:56 
Question[Message Deleted] Pin
Firdous24-Dec-07 0:00
Firdous24-Dec-07 0:00 
AnswerRe: How to add attributes to return type? Pin
Arjan Einbu24-Dec-07 0:15
Arjan Einbu24-Dec-07 0:15 
GeneralRe: [Message Deleted] Pin
Colin Angus Mackay24-Dec-07 5:05
Colin Angus Mackay24-Dec-07 5:05 
GeneralWhy clr allows private to access Main Method Pin
Firdous23-Dec-07 23:54
Firdous23-Dec-07 23:54 
GeneralRe: Why clr allows private to access Main Method Pin
Colin Angus Mackay24-Dec-07 5:04
Colin Angus Mackay24-Dec-07 5:04 
Questionqns in asp.net with csharp Pin
dhans23-Dec-07 23:23
dhans23-Dec-07 23:23 
GeneralRe: qns in asp.net with csharp Pin
Paul Conrad24-Dec-07 6:07
professionalPaul Conrad24-Dec-07 6:07 
GeneralRe: qns in asp.net with csharp Pin
dhans25-Dec-07 19:06
dhans25-Dec-07 19:06 
GeneralRe: qns in asp.net with csharp Pin
Paul Conrad26-Dec-07 4:45
professionalPaul Conrad26-Dec-07 4:45 
GeneralRe: qns in asp.net with csharp Pin
dhans30-Dec-07 19:09
dhans30-Dec-07 19:09 
GeneralRe: qns in asp.net with csharp Pin
dhans30-Dec-07 19:20
dhans30-Dec-07 19:20 
The follwing is the coding in Editmodule.aspx

protected void Page_Load(object sender, EventArgs e)
{
if (Session["username"] == null)
{
Response.Redirect("PMSessionExpiry.aspx");
}
string strAccess, Filename;
strAccess = null;
Filename = System.IO.Path.GetFileName(HttpContext.Current.Request.CurrentExecutionFilePath);
strAccess = PTSGeneral.File_Found(Session["username"].ToString(), Filename);
if (strAccess == "")
{
Response.Redirect("PMAccess.aspx");
}
if (!IsPostBack)
{
//Fill project name, module name to dropdownlist.
PTSGeneral.DDlGetData("select pr_id,pr_name from project_mst order by pr_id", DDLProjectName, "pr_name", "Pr_id");
ProjectId = DDLProjectName.SelectedValue.ToString();
lblModId.Text = CModule.getMaxModuleID();
//PTSGeneral.DDlGetData("select mo_id,mo_name from module_mst where pr_id='" + DDLProjectName.SelectedValue.ToString() + "' order by pr_id,mo_id", lblModId , "mo_id", "mo_name");

PTSGeneral.getUserDetails(ddlModifiedBy);
//call script for only accept only numeric value in no.of developer field
txtNoofDeveloper.Attributes.Add("onKeypress", "javascript:return inputNumbers()");

}
}

2. source contains the following

<a href="javascript:OpenPopupPage('HelpMod.aspx','<%= txtModIdSearch.ClientID %>','false');">
<img id="imgHelpMod" onclick="return imgHelpMod_onclick()" src="images/help4.jpg" style="width: 19px" height="19" /></td>

3. helpmodule.aspx has the following

No coding.
only grid which contains "module id, module name"

Kindly give a clear coding how to do and where to write. plz

dhans

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.