Click here to Skip to main content
15,914,488 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: job portal codes Pin
Arun Jacob17-Sep-09 0:22
Arun Jacob17-Sep-09 0:22 
GeneralRe: job portal codes Pin
sumanmks17-Sep-09 1:04
sumanmks17-Sep-09 1:04 
AnswerRe: job portal codes Pin
Arun Jacob17-Sep-09 1:17
Arun Jacob17-Sep-09 1:17 
AnswerRe: job portal codes Pin
ezeemantras30-Sep-09 1:46
ezeemantras30-Sep-09 1:46 
Questionjob portal Pin
sumanmks16-Sep-09 23:57
sumanmks16-Sep-09 23:57 
AnswerRe: job portal Pin
sashidhar17-Sep-09 0:04
sashidhar17-Sep-09 0:04 
GeneralRe: job portal Pin
sumanmks17-Sep-09 0:09
sumanmks17-Sep-09 0:09 
GeneralRe: job portal Pin
sashidhar17-Sep-09 0:18
sashidhar17-Sep-09 0:18 
GeneralRe: job portal Pin
sumanmks17-Sep-09 0:20
sumanmks17-Sep-09 0:20 
AnswerRe: job portal Pin
Arun Jacob17-Sep-09 0:09
Arun Jacob17-Sep-09 0:09 
GeneralRe: job portal Pin
sumanmks17-Sep-09 0:28
sumanmks17-Sep-09 0:28 
AnswerRe: job portal Pin
Arun Jacob17-Sep-09 0:31
Arun Jacob17-Sep-09 0:31 
Questionadding table to div at runtime.. but when i want to access it using findcontrol method its returning null Pin
shailendra_csp16-Sep-09 23:51
shailendra_csp16-Sep-09 23:51 
AnswerRe: adding table to div at runtime.. but when i want to access it using findcontrol method its returning null Pin
Muhammad Mazhar17-Sep-09 9:07
Muhammad Mazhar17-Sep-09 9:07 
QuestionRemove tabindex from custom control Pin
sonalee230416-Sep-09 23:19
sonalee230416-Sep-09 23:19 
AnswerRe: Remove tabindex from custom control Pin
ss_hellhound15-Oct-09 2:04
ss_hellhound15-Oct-09 2:04 
Questionhow to save value in Ms Access using asp.net 2.0 C# Pin
prateekfgiet16-Sep-09 22:59
prateekfgiet16-Sep-09 22:59 
AnswerRe: how to save value in Ms Access using asp.net 2.0 C# Pin
Rajeshwar Code- Developer16-Sep-09 23:33
Rajeshwar Code- Developer16-Sep-09 23:33 
GeneralRe: how to save value in Ms Access using asp.net 2.0 C# Pin
prateekfgiet16-Sep-09 23:41
prateekfgiet16-Sep-09 23:41 
GeneralRe: how to save value in Ms Access using asp.net 2.0 C# Pin
sashidhar16-Sep-09 23:51
sashidhar16-Sep-09 23:51 
AnswerRe: how to save value in Ms Access using asp.net 2.0 C# Pin
Prabhakar Parihar18-Sep-09 22:02
Prabhakar Parihar18-Sep-09 22:02 
AnswerRe: how to save value in Ms Access using asp.net 2.0 C# Pin
Prabhakar Parihar18-Sep-09 22:25
Prabhakar Parihar18-Sep-09 22:25 
This code useful for u..

firstly add <appsettings> tag in web config

<appSettings>
 <add key="ConnectionStrings" value="Provider=Microsoft.Jet.OLEDB.4.0; Data Source={0}"/>
  <add key="dbfile" value="~/App_Data/data.mdb"/>
</appSettingst>


After then


Pro = ConfigurationManager.AppSettings["ConnectionStrings"].ToString();
                MyPath = ConfigurationManager.AppSettings["dbfile"].ToString();
                Conns = String.Format(Pro, HttpContext.Current.Server.MapPath(MyPath));
                con = new OleDbConnection(Conns);
                con.Open();
                string st = "Madhaya Pradesh";
                string qql = "INSERT into Registration(UniqueID,Name,FName,DOB,TMarks,OMarks,PMarks,PClass,PLine,Board,District,Division,Category,Sex,PChallange,Address,Pin,RDistrict,State,Phone,SchoolAddress,SchoolPincode,SchoolDistrict) values('" + lbluniquid.Text + "','" + txtname.Text + "','" + txtfathername.Text + "','" + tbMyDate.Text + "'," + txttotalmarks.Text + "," + txtobtainmarks.Text + "," + p + ",'" + rdpresent.SelectedItem.Text + "','" + rdpovertyline.SelectedItem.Text + "','" + rdboard.SelectedItem.Text + "','" + ddldistrict.SelectedItem.Text + "','" + lbldivision.Text + "','" + rdcategory.SelectedItem.Text + "','" + rdsex.SelectedItem.Text + "','" + rdphysically.SelectedItem.Text + "','" + txtaddress.Text + "','" + txtpincode.Text + "','" + ddldistrict1.SelectedItem.Text + "','" + st  + "','" + txtcontact.Text + "','"+ txtschooladdress.Text +"','"+ txtschoolpincode.Text +"','"+ ddldistrict2.SelectedItem.Text +"')";
                cmd = new OleDbCommand(qql, con);
                int res;
                res = cmd.ExecuteNonQuery();
                res = 1;
                con.Close();

Questioncan ajax run if javascript is disabled on client browser Pin
S.Aijaz16-Sep-09 22:57
S.Aijaz16-Sep-09 22:57 
AnswerRe: can ajax run if javascript is disabled on client browser Pin
Manas Bhardwaj16-Sep-09 23:16
professionalManas Bhardwaj16-Sep-09 23:16 
GeneralRe: can ajax run if javascript is disabled on client browser Pin
Rajeshwar Code- Developer16-Sep-09 23:32
Rajeshwar Code- Developer16-Sep-09 23:32 

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.