Click here to Skip to main content
15,897,090 members
Home / Discussions / C#
   

C#

 
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

Generalthe PC current Calender Pin
Ahmad Adnan23-Dec-07 21:49
Ahmad Adnan23-Dec-07 21:49 
Generalautopostback property Pin
chithra.r23-Dec-07 21:39
chithra.r23-Dec-07 21:39 
GeneralRe: autopostback property Pin
Kristian Sixhøj23-Dec-07 22:01
Kristian Sixhøj23-Dec-07 22:01 
GeneralRe: autopostback property Pin
rah_sin23-Dec-07 22:17
professionalrah_sin23-Dec-07 22:17 
GeneralRe: autopostback property [modified] Pin
dhans30-Dec-07 20:59
dhans30-Dec-07 20:59 
QuestionHow to get the linked url from a document? Pin
sduhd23-Dec-07 21:30
sduhd23-Dec-07 21:30 
AnswerRe: How to get the linked url from a document? Pin
That's Aragon24-Dec-07 0:21
That's Aragon24-Dec-07 0:21 
Generaltexturing by a bmp file Pin
Member 470189823-Dec-07 21:29
Member 470189823-Dec-07 21:29 
GeneralRe: texturing by a bmp file Pin
Anthony Mushrow23-Dec-07 23:01
professionalAnthony Mushrow23-Dec-07 23:01 
GeneralRe: texturing by a bmp file Pin
GuyThiebaut23-Dec-07 23:14
professionalGuyThiebaut23-Dec-07 23:14 
Questionhow can i get the real IPAddress of a client that use a share internet Pin
amin_ramin888623-Dec-07 20:55
amin_ramin888623-Dec-07 20:55 
GeneralRe: how can i get the real IPAddress of a client that use a share internet Pin
Michael Sync23-Dec-07 21:13
Michael Sync23-Dec-07 21:13 
GeneralRe: how can i get the real IPAddress of a client that use a share internet Pin
amin_ramin888624-Dec-07 20:11
amin_ramin888624-Dec-07 20:11 
GeneralNew Activex Control Pin
Thaer Hamael23-Dec-07 19:49
Thaer Hamael23-Dec-07 19:49 
Generalcatching browser action Pin
balakpn23-Dec-07 19:18
balakpn23-Dec-07 19:18 
GeneralRe: catching browser action Pin
Michael Sync23-Dec-07 21:14
Michael Sync23-Dec-07 21:14 
GeneralRe: catching browser action Pin
balakpn23-Dec-07 22:03
balakpn23-Dec-07 22:03 

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.